标签:style blog http color io os ar 文件 div
js获取到的dom对象的style通常是没有值得,因为我们都写在外部文件中,从慕课网上见到讲师封装的一个方法,挺不错。特此记录下来。
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 }
标签:style blog http color io os ar 文件 div
原文地址:http://www.cnblogs.com/scrit/p/3984659.html