StylePropertyMap: clear() 方法

clear() 方法是 StylePropertyMap 接口的方法,用于移除 StylePropertyMap 中的所有声明。

语法

js
clear()

参数

无。

返回值

无 (undefined)。

示例

以下示例移除元素 style 属性 中的所有样式。

js
// get the button element
const buttonEl = document.querySelector(".example");

// remove all styles from the style attribute
buttonEl.attributeStyleMap.clear();

规范

规范
CSS Typed OM 级别 1
# dom-stylepropertymap-clear

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。