StylePropertyMap:append() 方法

append()StylePropertyMap 接口的方法,它使用给定的属性将传递的 CSS 值添加到 StylePropertyMap 中。

语法

js
append(property, value)

参数

property

指示要添加的样式特征(例如字体、宽度、背景颜色)的标识符。

value

给定属性应具有的值。

返回值

无 (undefined)。

示例

此示例演示了使用 HTMLElement.attributeStyleMap 将额外的背景图像值添加到元素的 background-image 属性。

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

// append another value to the background-image property set on the attribute
buttonEl.attributeStyleMap.append(
  "background-image",
  "linear-gradient(180deg, blue, black)",
);

规范

规范
CSS 类型化 OM 级别 1
# dom-stylepropertymap-append

浏览器兼容性

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