中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

CSSStyleDeclaration removeProperty() 方法

CSS CSSStyleDeclaration CSS CSSStyleDeclaration

實(shí)例

移除 color 屬性:

var declaration = document.styleSheets[0].cssRules[0].style; var removedvalue = declaration.removeProperty("color"); alert(removedvalue);

運(yùn)行代碼 ?

定義和使用

removeProperty() 方法用于移除指定的 CSS 樣式屬性。


瀏覽器支持

方法
removeProperty() Yes 9.0 Yes Yes Yes

語法

object.removeProperty(propertyname)

屬性值

參數(shù) 描述
propertyname 必需。一個(gè)字符串,表示要移除的屬性名。

技術(shù)細(xì)節(jié)

DOM 版本: CSS Object Model
返回值: 字符串, 是移除的屬性名。

CSS CSSStyleDeclaration CSS CSSStyleDeclaration

其他擴(kuò)展