blob: 8b23a741170e0d74ffb02323a9e1edee84138612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
---
title: ShadowRoot.host
slug: Web/API/ShadowRoot/host
tags:
- API
- Propriété
- Reference
- ShadowRoot
- shadow dom
translation_of: Web/API/ShadowRoot/host
---
<div>{{APIRef("Shadow DOM")}}</div>
<p>La propriété <strong><code>host</code></strong> est une propriété en lecture seule, rattachée à l'interface {{domxref("ShadowRoot")}} et qui représente une référence à l'élément du DOM auquel la racine <code>ShadowRoot</code> est attachée.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">var <em>element</em> = <em>shadowRoot</em>.host</pre>
<h3 id="Valeur">Valeur</h3>
<p>Un élément du DOM sous la forme d'un objet {{domxref('Element')}}.</p>
<h2 id="Exemples">Exemples</h2>
<pre class="brush: js">let customElem = document.querySelector('mon-element-shadow-dom');
let shadow = customElem.shadowRoot;
...
// renvoie l'élément hôte
let hostElem = shadow.host;</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG','#dom-shadowroot-host','ShadowRoot.host')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.ShadowRoot.host")}}</p>
|