当前位置: 代码迷 >> HTML/CSS >> js setattribute批量设立css样式
  详细解决方案

js setattribute批量设立css样式

热度:112   发布时间:2012-11-13 10:00:50.0
js setattribute批量设置css样式

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

IE中则必须使用style.cssT ext

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

  相关解决方案