blob: c51cf430bf02ec23054dc69a8ade8f1955050e5b (
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
56
57
|
---
title: Window.customElements
slug: Web/API/Window/customElements
tags:
- API
- CustomElementRegistry
- Property
- Reference
- Web Components
- Window
- custom elements
translation_of: Web/API/Window/customElements
---
{{APIRef}}
La propriété en lecture seule `customElements` de l'interface {{domxref("Window")}} renvoie une référence à l'objet {{domxref("CustomElementRegistry")}}, qui peut être utilisée pour enregistrer de nouveaux [éléments personnalisés](/fr-FR/docs/Web/Web_Components/Using_custom_elements) et obtenir des informations sur des éléments personnalisés enregistrés.
## Syntaxe
let registreElementsPersonnalises = window.customElements;
### Valeur retournée
Une instance d'objet {{domxref("CustomElementRegistry")}} représentant le registre des éléments personnalisés pour la fenêtre en cours.
## Exemples
L'exemple le plus courant d'utilisation de cette propriété que vous verrez sera d'obtenir l'accès à la méthode {{domxref ("CustomElementRegistry.define()")}} pour définir et enregistrer un nouvel élément personnalisé, par exemple :
let registreElementsPersonnalises = window.customElements;
registreElementsPersonnalises.define('mon-element-personnalise', MonElementPersonnalise);
Cependant, il est généralement raccourci en quelque chose comme :
customElements.define('details-element',
class extends HTMLElement {
constructor() {
super();
const modele = document
.getElementById('modele-details-element')
.content;
const racineOmbre = this.attachShadow({mode: 'open'})
.appendChild(template.cloneNode(true));
}
});
Voir notre repo [web-components-examples](https://github.com/mdn/web-components-examples/) pour davantage d'exemples d'utilisation.
## Spécification
| Spécification | Statut | Commentaire |
| ---------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------- | -------------------- |
| {{SpecName("HTML WHATWG", "custom-elements.html#dom-window-customelements", "window.customElements")}} | {{Spec2("HTML WHATWG")}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.Window.customElements")}}
|