JavaScript中如何批量设置Css样式
设置 input
元素的 属性:
document.getElementsByTagName("INPUT")[0].setAttribute("属性","属性内容");
定义和用法
setAttribute()
方法添加指定的属性,并为其赋指定的值。
如果这个指定的属性已存在,则仅设置/更改值
当然也可以批量修改属性
var dom=document.getElementById("id");
dom.setAttribute("style","width:10px;height:10px;border:solid 1px red;") ;
IE中则必须使用style.cssText
var dom=document.getElementById("id");
dom1.style.cssText = "width:10px;height:10px;border:solid 1px red;