行內style的寫法為:1、對複合屬性的寫法是去掉中間的“—”,將第二個單字大寫,程式碼為【alert(box.style.color)】;2、 float是關鍵字有特殊寫法,代號為【alert(box.style.float)】。
JS中行內style的寫法為:
1、存取元素樣式1, stye屬性只對行內樣式有用
var box = document.getElementById("box");
2、對複合屬性的寫法是去掉中間的“—”,並將第二個單字大寫。
// alert(box.style.color); // alert(box.style.fontSize);
3、float是關鍵字,因此最好不要這樣寫
//alert(box.style.float);
4、對float屬性ie和非ie有差異:
// alert(box.style.cssFloat); //非ie // alert(box.style.styleFloat); //IE专用
5、給float賦值,且相容於所有瀏覽器
// typeof box.style.cssFloat !="undefined"?box.style.cssFloat = "right":box.style.styleFloat ="right";
#相關學習推薦:javascript影片教學
以上是JS中行內style怎麼寫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!