摘要:
IE中: document.body.clientWidth ==> *DY对象宽度 document.body.clientHeight ==> *DY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 document.documentEle 阅读全文
摘要:
1.逗号运算符 var num = (1,2); //num = 2,括号必须存在 var f = (function a() {}, function b() {}); //选取的是逗号运算符后面的值 2. function test() { }(1,2,3,4) //此函数这里不会报错,会认为( 阅读全文