上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: http://snailxr.iteye.com/blog/1300173 阅读全文
posted @ 2014-03-12 17:27 Western Journey 阅读(122) 评论(0) 推荐(0) 编辑
摘要: firebug:0 chrome:10(因为border:10) 阅读全文
posted @ 2014-03-12 16:26 Western Journey 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 闭包 这是第一条 这是第二条 这是第三条利用闭包,代码简洁但增加了内存消耗 var ele=$('#test'); var liNode=ele.find('li'); var len=liNode.length; for(var i=0;i<=len-1;i++){ liNode[i].onclick=(function(x){ return function(){ console.log(x); //return x; } })(i) }增加自定义属性,改变了html代码 var ele=$('#test'); var liNode=e 阅读全文
posted @ 2014-03-12 16:24 Western Journey 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://www.w3cfuns.com/thread-5599528-1-1.html 阅读全文
posted @ 2014-03-11 17:00 Western Journey 阅读(85) 评论(0) 推荐(0) 编辑
摘要: var x = 3;var foo = { x: 2, baz: { x: 1, bar: function() { return this.x; } }}var go = foo.baz.bar;alert(go()); //3alert(foo.baz.bar()); //1var x = 4, obj = { x: 3, bar: function() { var x = 2; ... 阅读全文
posted @ 2014-03-07 15:04 Western Journey 阅读(186) 评论(0) 推荐(0) 编辑
摘要: function bar() { return foo; foo = 10; function foo() {} var foo = 11;}alert(typeof bar());结果是 function 阅读全文
posted @ 2014-03-05 13:35 Western Journey 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-03-05 09:57 Western Journey 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 一般都设置display=' ',因为display='none'在某些浏览器里不生效 阅读全文
posted @ 2014-03-05 09:13 Western Journey 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 结果:结论:未经初始化的变量,会保存一个特殊的值-------undefined结果:dayVal is not defined 阅读全文
posted @ 2014-03-05 08:58 Western Journey 阅读(164) 评论(0) 推荐(0) 编辑
摘要: http://my.oschina.net/blogshi/blog/192658 浏览器中关于事件的那点事儿 阅读全文
posted @ 2014-01-17 11:23 Western Journey 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页