标签: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
标签:stop cti pre 坐标 cli getc 事件 log put
原文地址:http://www.cnblogs.com/zysos2016/p/6055777.html