标签:
代码示例:
//样式的获取 function getStyle(obj,name){ if(obj.currentStyle!=undefined){ return obj.currentStyle[name]; }else{ return getComputedStyle(obj,false)[name]; } }
获取非行间样式
原文地址:http://www.cnblogs.com/mc67/p/5238381.html