aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/customelementregistry/get/index.html
blob: 9d697769fb9c82a87598f951a428a921abe21324 (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
58
59
60
61
---
title: CustomElementRegistry.get()
slug: Web/API/CustomElementRegistry/get
tags:
    - API
    - CustomElementRegistry
    - Experimental
    - Method
    - Reference
    - Web Components
    - custom elements
    - get
browser-compat: api.CustomElementRegistry.get
---

<p>{{APIRef("CustomElementRegistry")}}</p>

<p>
    O <code><strong>get()</strong></code> é um método de {{domxref("CustomElementRegistry")}} a interface retorna um construtor para um elemento personalizado previamente definido.
</p>

<h2 id="Syntax">Syntax</h2>

<pre class="brush: js"><em>constructor</em> = customElements.get(<em>name</em>);
</pre>

<h3 id="Parameters">Parâmetros</h3>

<dl>
    <dt>name</dt>
    <dd>O nome do elemento personalizado cujo construtor você deseja retornar uma referência.</dd>
</dl>

<h3 id="Return_value">Valor de retorno</h3>

<p>O construtor do elemento personalizado nomeado, ou <code>undefined</code>se não há definição de elemento personalizado com esse nome.</p>

<h2 id="Examples">Examples</h2>

<pre class="brush: js">
customElements.define('my-paragraph',
  class extends HTMLElement {
    constructor() {
      let templateContent = document.getElementById('my-paragraph').content;
      super() // returns element this scope
        .attachShadow({mode: 'open'}) // sets AND returns this.shadowRoot
        .append(templateContent.cloneNode(true));
  }
})

// Retorne uma referência ao construtor my-paragraph
let ctor = customElements.get('my-paragraph');
</pre>

<h2 id="Specifications">Especificações</h2>

{{Specifications}}

<h2 id="Browser_compatibility">Compatibilidade com navegadores</h2>

<p>{{Compat}}</p>