创建一个自定义输入元素

时间:2019-05-06 08:45:48

标签: javascript html custom-element

我正在尝试创建一个自定义组件,该组件扩展了HTMLInputElement组件,但没有任何呈现。

class myInput extends HTMLInputElement {};

customElements.define('my-input', myInput, {
  extends: 'input'
});
<my-input type="text"></my-input>

我在这里想念什么?

1 个答案:

答案 0 :(得分:23)

您期望的没有发生,因为这不是扩展已内置元素的正确方法。

如MDN文档所述,您需要将内置标记保留在DOM中,并使其具有is属性。

通过关注 spot输入来查看下面的代码段。

class spotInput extends HTMLInputElement {
  constructor(...args) {
    super(...args);
    
    this.addEventListener('focus', () => {
      console.log('Focus on spotinput');
    });
  }
};

customElements.define('spot-input', spotInput, {
  extends: 'input',
});
<input type="text" placeholder="simple input">
<input is="spot-input" type="text" placeholder="spot input">

但是我猜测您想被允许使用<spot-input>标签。您可以通过附加a shadow DOM,创建an autonomous element并将其附加<input>来实现。

class spotInput extends HTMLElement {
  constructor(...args) {
    super(...args);
    
    // Attaches a shadow root to your custom element.
    const shadowRoot = this.attachShadow({mode: 'open'});
    
    // Defines the "real" input element.
    let inputElement = document.createElement('input');
    inputElement.setAttribute('type', this.getAttribute('type'));
    
    inputElement.addEventListener('focus', () => {
      console.log('focus on spot input');
    });
    
    // Appends the input into the shadow root.
    shadowRoot.appendChild(inputElement);
  }
};

customElements.define('spot-input', spotInput);
<input type="number">
<spot-input type="number"></spot-input>

然后,如果您检查DOM树,则应该具有:

<input type="number">

<spot-input type="number">
    #shadow-root (open)
        <input type="number">
</spot-input>