StylePropertyMap: delete() 方法

**delete()** 方法是 StylePropertyMap 接口的方法,用于删除具有给定属性的 CSS 声明。

语法

js
delete(property)

参数

property

标识要移除的样式特征(例如字体、宽度、背景颜色)的标识符。

返回值

无(undefined)。

示例

以下示例从元素的 style 属性 中删除了 background-image 属性。

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

// remove background-image from style attribute
buttonEl.attributeStyleMap.delete("background-image");

规范

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

浏览器兼容性

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