CSSStyleDeclaration removeProperty() 方法
实例
移除 color 属性:
var declaration = document.styleSheets[0].cssRules[0].style;
var removedvalue = declaration.removeProperty("color");
alert(removedvalue);
尝试一下 »
定义和使用
removeProperty() 方法用于移除指定的 CSS 样式属性。
浏览器支持
方法 | |||||
---|---|---|---|---|---|
removeProperty() | Yes | 9.0 | Yes | Yes | Yes |
语法
object.removeProperty(propertyname)
属性值
参数 | 描述 |
---|---|
propertyname | 必需。一个字符串,表示要移除的属性名。 |
技术细节
DOM 版本: | CSS Object Model |
---|---|
返回值: | 字符串, 是移除的属性名。 |
点我分享笔记