javascript兼容性(实例讲解)
脚本之家 2017-09-07 1359
1.事件冒泡:
1 2 3 4 5 6 | //取消冒泡 if(e.stopPropagation){ e.stopPropagation();//w3c定义的APIbiaozhun }else{ e.cancelBubble=true;//兼容IE 6,7,8浏览器 } |
2.获取某个元素的CSS属性值:
1 2 3 4 5 6 7 8 9 10 11 | //获取某个元素的CSS属性值 function getStyle(element,stylename){ if(element.currentStyle){ //IE return element.currentStyle[stylename]; }else{ //其他浏览器 var computedStyle=window.getComputedStyle(element,null); return computedStyle[stylename]; } } |