亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

CSSStyleDeclaration removeProperty() 方法

 JavaScript CSSStyleDeclaration  對(duì)象

removeProperty()方法移除CSS樣式聲明對(duì)象的屬性。

語法:

object.removeProperty(property)
var declaration = document.styleSheets[0].rules[0].style;
var oldValue = declaration.removeProperty('color');
document.getElementById("result").innerHTML = oldValue;
測(cè)試看看?/?

瀏覽器兼容性

所有瀏覽器都完全支持removeProperty()方法:

Method
removeProperty()

參數(shù)值

參數(shù)描述
property一個(gè)字符串,表示要?jiǎng)h除的屬性的名稱

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

返回值:一個(gè)字符串,表示已刪除屬性的舊值
DOM版本:CSS對(duì)象模型

 JavaScript CSSStyleDeclaration  對(duì)象