StylePropertyMap: append()-Methode
Die append()
-Methode der StylePropertyMap
-Schnittstelle fügt den übergebenen CSS-Wert mit der angegebenen Eigenschaft zum StylePropertyMap
hinzu.
Syntax
js
append(property, value)
Parameter
Rückgabewert
Keiner (undefined
).
Beispiele
Dieses Beispiel zeigt, wie ein zusätzlicher Hintergrundbildwert zur background-image
-Eigenschaft des Elements hinzugefügt wird, unter Verwendung von HTMLElement.attributeStyleMap
.
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)",
);
Spezifikationen
Specification |
---|
CSS Typed OM Level 1 # dom-stylepropertymap-append |
Browser-Kompatibilität
BCD tables only load in the browser