CSSStyleDeclaration.removeProperty() method interface removes a property from a CSS style declaration object.

句法

var oldValue = style.removeProperty(property);
					

参数

  • property DOMString representing the property name to be removed. Note that multi-word property names are hyphenated and not camel-cased.

返回值

  • oldValue DOMString equal to the value of the CSS property before it was removed.

异常

  • DOMException NO_MODIFICATION_ALLOWED_ERR: if the property or declaration block is read only.

范例

The following JavaScript code removes the background-color CSS property from a selector rule:

var declaration = document.styleSheets[0].rules[0].style;
var oldValue = declaration.removeProperty('background-color');
					

规范

规范 状态 注释
CSS Object Model (CSSOM)
The definition of 'CSSStyleDeclaration.removeProperty()' in that specification.
工作草案
Document Object Model (DOM) Level 2 Style Specification
The definition of 'CSSStyleDeclaration' in that specification.
过时

浏览器兼容性

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. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
removeProperty Chrome 1 Edge 12 Firefox 1 IE Yes Opera Yes Safari 6 WebView Android 4.4 Chrome Android 18 Firefox Android 4 Opera Android Yes Safari iOS Yes Samsung Internet Android 1.0

图例

完整支持

完整支持

元数据

  • 最后修改: