javascript兼容性(实例讲解)
1.事件冒泡:
//取消冒泡 if(e.stopPropagation){ e.stopPropagation();//w3c定义的APIbiaozhun }else{ e.cancelBubble=true;//兼容IE 6,7,8浏览器 }
2.获取某个元素的CSS属性值:
//获取某个元素的CSS属性值 function getStyle(element,stylename){ if(element.currentStyle){ //IE return element.currentStyle[stylename]; }else{ //其他浏览器 var computedStyle=window.getComputedStyle(element,null); return computedStyle[stylename]; } }
相关推荐
88236637 2020-08-19
长亭外一棵花菜 2020-06-14
ChaITSimpleLove 2020-06-09
dazhifu 2020-06-05
tianzyc 2020-06-05
加油奋斗吧 2020-05-31
大新哥Michael 2020-04-26
chunianyo 2020-04-11
lucialee 2020-03-04
RocketJ 2020-03-03
Web分享 2020-03-01
e度空间 2020-01-26
tangjianft 2020-01-05
微软FixIt 2015-07-05
Safari浏览器 2019-12-14