目录

CSSStyleDeclaration removeProperty() 方法

❮ CSSStyleDeclaration 对象

示例

删除颜色属性:

var declaration = document.styleSheets[0].cssRules[0].style;
var removedvalue = declaration.removeProperty("color");
alert(removedvalue);
亲自试一试 »

描述

removeProperty() 方法从 CSS 声明块中删除指定的 CSS 属性。


浏览器支持

Method
removeProperty() Yes 9.0 Yes Yes Yes

语法

object.removeProperty( propertyname)

参数值

Parameter Description
propertyname Required. A String representing the name of the property to remove

技术细节

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

❮ CSSStyleDeclaration 对象