CSSStyleDeclaration removeProperty() 方法

 JavaScript CSSStyleDeclaration  对象

removeProperty()方法移除CSS样式声明对象的属性。

语法:

object.removeProperty(property)
var declaration = document.styleSheets[0].rules[0].style;
var oldValue = declaration.removeProperty('color');
document.getElementById("result").innerHTML = oldValue;
测试看看‹/›

浏览器兼容性

所有浏览器都完全支持removeProperty()方法:

Method
removeProperty()

参数值

参数描述
property一个字符串,表示要删除的属性的名称

技术细节

返回值:一个字符串,表示已删除属性的旧值
DOM版本:CSS对象模型

 JavaScript CSSStyleDeclaration  对象