标签:school turn www .property asp etc cti function ntb
行内样式:
document.getElementById("id").style.property="值"
非行内样式:
function(obj,attr){
if(obj.currentStyle){
return obj.currentStyle
}
else{
return getComputedStyle(obj,false)[attr]
}
}
具体attr参考可http://www.w3school.com.cn/jsref/dom_obj_style.asp
标签:school turn www .property asp etc cti function ntb
原文地址:http://www.cnblogs.com/YutaoZhou/p/6539279.html