CSSStyleDeclaration - Web API 接口参考 编辑

CSSStyleDeclaration 接口表示一个对象,它是一个 CSS 声明块,CSS 属性键值对的集合。它暴露了样式信息和各种与样式相关的方法和属性。

CSSStyleDeclaration 对象可被暴露于三种不同的 API 下:

  • HTMLElement.style,用于操作单个元素的样式(<elem style="...">)。
  • CSSStyleSheet API,举个例子,document.styleSheets[0].cssRules[0].style 会返回文档中第一个样式表中的第一条 CSS 规则。
  • Window.getComputedStyle(),将 CSSStyleDeclaration 对象作为一个只读的接口。

属性

CSSStyleDeclaration.cssText
当前声明块的文本内容。设置此属性会改变样式。
CSSStyleDeclaration.length
属性的数量。参照下面的 item() 方法。
CSSStyleDeclaration.parentRule
包含当前声明块的 CssRule

方法

CSSStyleDeclaration.getPropertyPriority()
返回可选的优先级,"important"。
CSSStyleDeclaration.getPropertyValue()
返回给定属性的值。
CSSStyleDeclaration.item()
返回用index标记的属性名,当index越界时返回空字符串。
另一个可选方案:使用nodeList[i](在i越界时返回 undefined)获取。通常在非JavaScript Dom 实现方案是很有用。
CSSStyleDeclaration.removeProperty()
从 CSS 声明块中删除属性。
CSSStyleDeclaration.setProperty()
在CSS声明块中修改现有属性或设置新属性。
CSSStyleDeclaration.getPropertyCSSValue()
仅在火狐浏览器中支持 getComputedStyle. 返回 CSSPrimitiveValue or null for shorthand properties.

范例

var styleObj = document.styleSheets[0].cssRules[0].style;
console.log(styleObj.cssText);

for (var i = styleObj.length; i--;) {
  var nameString = styleObj[i];
  styleObj.removeProperty(nameString);
}

console.log(styleObj.cssText);

规范

规范状态备注
CSS Object Model (CSSOM)
CSSStyleDeclaration
Working Draft
Document Object Model (DOM) Level 2 Style Specification
CSSStyleDeclaration
ObsoleteInitial definition

浏览器兼容性

BCD tables only load in the browser

The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:49 次

字数:5149

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文