CustomElementRegistry: getName() 方法

getName() 方法是 CustomElementRegistry 接口的一个方法,它返回之前定义的自定义元素的名称。

语法

js
getName(constructor)

参数

constructor

自定义元素的构造函数。

返回值

之前定义的自定义元素的名称,如果使用该构造函数没有定义自定义元素,则返回 null

示例

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";

规范

规范
HTML 标准
# dom-customelementregistry-getname

浏览器兼容性

BCD 表格仅在启用了 JavaScript 的浏览器中加载。