首页 > 其他 > 详细

函数语法:currentStyle、getComputedStyle兼容判断

时间:2019-01-07 19:51:30      阅读:181      评论:0      收藏:0      [点我收藏+]

 

var oDiv = document.getElementById(aa);
if(oDiv.currentStyle){
      var style = oDiv.currentStyle;
     alert(‘ie:‘+style.width)

} else if(window.getComputedStyle) {
      var style = window.getComputedStyle(oDiv);
      alert(‘谷歌:‘+style.width)
}

 

函数语法:currentStyle、getComputedStyle兼容判断

原文:https://www.cnblogs.com/liubingyjui/p/10234811.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!