摘要: IE中: document.body.clientWidth ==> *DY对象宽度 document.body.clientHeight ==> *DY对象高度 document.documentElement.clientWidth ==> 可见区域宽度 document.documentEle 阅读全文
posted @ 2019-03-09 13:48 橱窗外的小孩 阅读(555) 评论(0) 推荐(0) 编辑
摘要: 1.逗号运算符 var num = (1,2); //num = 2,括号必须存在 var f = (function a() {}, function b() {}); //选取的是逗号运算符后面的值 2. function test() { }(1,2,3,4) //此函数这里不会报错,会认为( 阅读全文
posted @ 2019-03-09 10:55 橱窗外的小孩 阅读(229) 评论(0) 推荐(0) 编辑