CSSStyleDeclaration.setProperty() - Web API 接口参考 编辑

CSSStyleDeclaration.setProperty() 方法接口为一个声明了CSS样式的对象设置一个新的值 。

语法

style.setProperty(propertyName, value, priority);

参数

  • propertyName 是一个 DOMString ,代表被更改的CSS属性。
  • value可选 是一个 DOMString ,含有新的属性值。如果没有指定, 则当作空字符串。
    • 注意: value 不能包含 "!important" --那个应该使用 priority 参数.
  • priority可选 是一个 DOMString 允许设置 "important" CSS 优先级。如果没有指定, 则当作空字符串。

返回值

异常

  • DOMException (NoModificationAllowedError): 如果属性或装饰块为只读的,抛出此异常。

JavaScript 有一个特别的,更简单的在 CSSStyleDeclaration 对象上设置CSS属性值的语法:

style.cssPropertyName = 'value';

示例

下面的Javascript代码为一个选中元素样式的 margin 属性设置一个新的值:

var declaration = document.styleSheets[0].rules[0].style;
declaration.setProperty('margin', '1px 2px');
// Equivalent to:
// declaration.margin = '1px 2px';

  说明

描述状态注释
CSS Object Model (CSSOM)
CSSStyleDeclaration.setProperty()
工作草案 
Document Object Model (DOM) Level 2 Style Specification
CSSStyleDeclaration
被废弃 

浏览器兼容

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
特性ChromeEdgeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
基础支持(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
特性AndroidEdgeFirefox Mobile (Gecko)IE MobileOpera MobileSafari MobileChrome for Android
基础支持(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)

want learn more

getComputedStyle
getPropertyValue

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

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

发布评论

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

词条统计

浏览:54 次

字数:4924

最后编辑:8年前

编辑次数:0 次

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