StylePropertyMap:append() 方法
append()
是 StylePropertyMap
接口的方法,它使用给定的属性将传递的 CSS 值添加到 StylePropertyMap
中。
语法
js
append(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 的浏览器中加载。