StylePropertyMap.clear()
Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。
clear()
は StylePropertyMap
インターフェイスのメソッドで、 StylePropertyMap
にあるすべての宣言を削除します。
構文
js
clear()
引数
なし。
返値
なし (undefined
)。
例
以下の例は、要素の style 属性からすべてのスタイルを削除します。
js
// button 要素を取得
const buttonEl = document.querySelector(".example");
// style 属性からすべてのスタイルを削除
buttonEl.attributeStyleMap.clear();
仕様書
Specification |
---|
CSS Typed OM Level 1 # dom-stylepropertymap-clear |
ブラウザーの互換性
BCD tables only load in the browser