DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JavaScript中的style.cssText使用教程
JavaScript中的style.cssText使用教程
編輯:JavaScript綜合知識     

 cssText 本質是什麼?

cssText 的本質就是設置 HTML 元素的 style 屬性值。

cssText 怎麼用?

 

代碼如下:
document.getElementById("d1").style.cssText = "color:red; font-size:13px;";

 

看了這個示例後,相信不說,也知道 style.cssText 是什麼意思了,它就是設置 HTML 元素的 style 屬性。

cssText 返回值是什麼?

在某些浏覽器中(比如 Chrome),你給他賦什麼值,它就返回什麼值。在 IE 中則比較痛苦,它會格式化輸出、會把屬性大寫、會改變屬性順序、會去掉最後一個分號,比如:

 

代碼如下:
document.getElementById("d1").style.cssText = "color:red; font-size:13px;";
alert(document.getElementById("d1").style.cssText);

 

在 IE 中值為:FONT-SIZE: 13px; COLOR: red。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved