欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js setattribute批量設(shè)置css樣式

 更新時(shí)間:2009年11月26日 18:40:13   作者:  
setattribute批量設(shè)置css樣式的實(shí)現(xiàn)代碼。
firefox等可以使用
var dom=document.getElementById("name");
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;";

補(bǔ)充一下,目前style.cssText類似innerHTML了,已經(jīng)成為一個(gè)web開發(fā)的事實(shí)標(biāo)準(zhǔn)。因此測(cè)試顯示firefox瀏覽器也支持這種方式。

相關(guān)文章

最新評(píng)論