onfocusout在最新的亮元素版本2.2.1上不起作用

时间:2020-03-24 18:33:15

标签: javascript lit-element polymer-3.x

firstUpdated() {
  let element = this.renderRoot.getElementById('input');
      element.addEventListener('focusout', e => {
        this.inputFocus = false;
        this.requestRender();
      });
}

<dropdown-list id="list"></dropdown-list>

<button @focusout = ${e => this.renderRoot.getElementById("list").style.display = "none" }></button>

onfocusout在最新版本中不起作用,我尝试了一些操作,但是不起作用。

dropdown-list是组件。

0 个答案:

没有答案