码迷,mamicode.com
首页 > 其他好文 > 详细

getComputedStyle和currentStyle

时间:2015-05-27 00:44:50      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 /*alert(div.style.width)*/ //null
 2 
 3 function getstyle(obj,name){
 4     if(obj.currentStyle) {
 5     return obj.currentStyle[name];
 6 } else {
 7     return getComputedStyle(obj,null)[name];
 8     }
 9 }
10 alert(getstyle(div,‘width‘))    
11 }

兼容ie 和非ie浏览器的获取样式写法 ;

zIndex  , marginLeft  backgroundColor 

getComputedStyle和currentStyle

标签:

原文地址:http://www.cnblogs.com/web-alibaba/p/4532123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!