«

javascript操作css属性

时间:2024-3-2 04:58     作者:韩俊     分类: Html+Css



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;

标签: html css

热门推荐