码迷,mamicode.com
首页 > Web开发 > 详细

js获取dom对象style样式的值

时间:2014-09-21 17:19:20      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   文件   div   

js获取到的dom对象的style通常是没有值得,因为我们都写在外部文件中,从慕课网上见到讲师封装的一个方法,挺不错。特此记录下来。

bubuko.com,布布扣
1 function getStyle(obj,attr){
2     if(obj.currentStyle){//兼容IE
3             return obj.currentStyle[attr];
4     }else{
5             return getComputedStyle(obj,false)[attr];
6     }
7 }
View Code

 

js获取dom对象style样式的值

标签:style   blog   http   color   io   os   ar   文件   div   

原文地址:http://www.cnblogs.com/scrit/p/3984659.html

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