Rumah > Artikel > hujung hadapan web > js中cssText的用法实例(代码示例)
本篇文章给大家带来的内容是关于js中cssText的用法实例(代码示例),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
cssText 的本质就是设置 HTML 元素的 style 属性值。
一、用法
在浏览器中,赋什么值就会返回什么值。但在 IE 中,它会格式化输出、会把属性大写、会改变属性顺序、会去掉最后一个分号
document.getElementById("id").style.cssText = "color:red; font-size:13px;";
IE中结果:FONT-SIZE: 13px; COLOR: red
但这样写会把原有的cssText清掉,比如原来的style中有’display:none;’,那么执行完上面的JS后,display就被删掉了。可以采用cssText累加的方法:
document.getElementById("id").style.cssText += "color:red; font-size:13px;";
二、一般设置样式的方法
var element= document.getElementById(“id”); element.style.color=”red”; element.style.font-size=”13px”;
相关推荐:
js中巧用cssText属性批量操作样式_javascript技巧
js中用事实证明cssText性能高的问题_javascript技巧
Atas ialah kandungan terperinci js中cssText的用法实例(代码示例). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!