ShadowRoot.host
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
La propriété host
est une propriété en lecture seule, rattachée à l'interface ShadowRoot
et qui représente une référence à l'élément du DOM auquel la racine ShadowRoot
est attachée.
Syntaxe
js
var element = shadowRoot.host;
Valeur
Un élément du DOM sous la forme d'un objet Element
.
Exemples
js
let customElem = document.querySelector('mon-element-shadow-dom');
let shadow = customElem.shadowRoot;
...
// renvoie l'élément hôte
let hostElem = shadow.host;
Spécifications
Specification |
---|
DOM Standard # dom-shadowroot-host |
Compatibilité des navigateurs
BCD tables only load in the browser