這次帶給大家JS的相容性使用方法,JS相容性使用的注意事項有哪些,以下就是實戰案例,一起來看一下。
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]; } }
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#
以上是JS的兼容性使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!