摘要: 一、数组的方法 数组的方法有数组原型方法,也有从Object对象继承来的方法 join() push()和pop() shift()和unshift() sort() reverse() concat() slice() splice() indexOf()和lastIndexOf() (ES5新增 阅读全文
posted @ 2019-03-16 21:42 SHY13 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 001、获取滚动条滚动的距离 var sTop = document.documentElement.scrollTop || document.body.scrollTop 002、获取非行间样式 IE: currentStyle[attr] 标准: getComputedStyle[attr] 阅读全文
posted @ 2019-03-16 21:24 SHY13 阅读(92) 评论(0) 推荐(0) 编辑