首页 > 代码库 > IE API兼容整理

IE API兼容整理

取CSS样式

1 function getCSS(elem,style){
2     if(window.getComputedStyle){
3         return getComputedStyle(elem)[style];
4     }
5     return elem.currentStyle[style]; // IE用
6 } 

事件类:

1 Event.target -->  Event.srcElement;
1 Event.stopPropagation() --> Event.cancelBubble;

坐标类:

1 window.innerHeight --> document.documentElement.clientHeight --> document.body.clientHeight

 

IE API兼容整理