标签:
js设置获取属性:设置属性-element.setAttribute("属性名称","属性值");获取属性-element.getAttribute("属性名称");
jq设置获取属性:attr()
js获取行内样式:document.getElementById(“button″).style.width;
js获取css文件里样式:
IE var
width = mydiv.currentStyle[‘
width‘
];
Chorme var
width = window.getComputedStyle(mydiv ,
null
)[
‘width‘
];
标签:
原文地址:http://www.cnblogs.com/qian-yu-qian-xun/p/5892822.html