js setattribute批量设立css样式

jssetattribute批量设置css样式dom.setAttribute(style,width:10pxheight:10pxborder:solid 1px red

js setattribute批量设置css样式

dom.setAttribute("style","width:10px;height:10px;border:solid 1px red;") ;

IE中则必须使用style.cssText

var dom=document.getElementById("name");
dom1.style.cssText = "width:10px;height:10px;border:solid 1px red;";