es5-polyfill
v0.0.6
Published
ECMAScript 5 Polyfill
Downloads
2,888
Readme
ECMAScript 5 Polyfills
Object
Object.defineProperty 注意不要给普通对象添加属性时用 get/set
,慎用
Array
Function
String
Date
DOM相关
Document.getElementsByClassName
Element.getBoundingClientRect
弥补了IE中getBoundingClientRect
取不到width/height的缺憾
事件绑定/解绑
IE中也使用addEventListener
/removeEventListener
方法进行事件绑定/解绑
window
getComputedStyle
为IE增加了此API的Polyfill
Viewport
获取当前窗口的一些属性已经做了兼容,可以直接使用如下属性来获取
window.innerWidth
window.innerHeight
window.pageXOffset
window.pageYOffset
window.scrollX
window.scrollY