标签: javascript angular internet-explorer mouseevent mouselistener
在Angular2中,我对鼠标事件“ blur”进行了侦听,该示例在Chrome和Firefox中运行良好,但在Internet Explorer 11(IE 11)中无法正常工作。
@HostListener("blur") public hide() { this.dropdownVisible = false; this.syncSelectedIndex(); }
我需要在模糊事件上触发此函数“ hide()”的解决方案。