码迷,mamicode.com
首页 > Windows程序 > 详细

IE API兼容整理

时间:2016-11-11 23:38:35      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:stop   cti   pre   坐标   cli   getc   事件   log   put   

取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兼容整理

标签:stop   cti   pre   坐标   cli   getc   事件   log   put   

原文地址:http://www.cnblogs.com/zysos2016/p/6055777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!