Posted in Javascript onDecember 30, 2013
var getstyle = function(elementID,attribute){ obj = document.getElementById(elementID); // 前面是IE后面是html的标准 return obj.currentStyle ? obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj, false)[attribute]; }
还有一种可以获取写在html中的style属性的
document.getElementById("elementId").style.paddingLeft;
javascript操作css属性
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@