CustomElementRegistry: getName()-Methode
Die getName()
-Methode des CustomElementRegistry
Interfaces gibt den Namen eines zuvor definierten benutzerdefinierten Elements zurück.
Syntax
js
getName(constructor)
Parameter
constructor
-
Konstruktor für das benutzerdefinierte Element.
Rückgabewert
Der Name des zuvor definierten benutzerdefinierten Elements oder null
, wenn kein benutzerdefiniertes Element mit dem Konstruktor definiert ist.
Beispiele
js
class MyParagraph extends HTMLElement {
constructor() {
let templateContent = document.getElementById("custom-paragraph").content;
super() // returns element this scope
.attachShadow({ mode: "open" }) // sets AND returns this.shadowRoot
.append(templateContent.cloneNode(true));
}
}
customElements.define("my-paragraph", MyParagraph);
// Return a reference to the my-paragraph constructor
customElements.getName(MyParagraph) === "my-paragraph";
Spezifikationen
Specification |
---|
HTML # dom-customelementregistry-getname |
Browser-Kompatibilität
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
getName |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- Partial support
- Partial support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.