Style cssText 属性

返回上一级

Style 对象的 cssText 属性设置或返回作为字符串的样式声明的内容。

语法

设置 cssText 属性

object.style.cssText=" string "

返回 cssText 属性

object.style.cssText

值说明

描述
string 规定样式声明的内容

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 cssText 属性

范例

获取作为字符串的样式声明

<script>
function displayResult()
{
alert(document.getElementById("p1").style.cssText);
}
</script>
<p id="p1" style="border:2px dashed green;color:red;">This is a paragraph.</p>
<br>
<button type="button" onclick="displayResult()">Get style declaration</button>

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.