web – 使用Angular 2检测输入焦点

前端之家收集整理的这篇文章主要介绍了web – 使用Angular 2检测输入焦点前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个在您键入时显示自动完成列表,但在您单击文档上的其他位置时会消失。如何使用Angular 2检测表单输入是否聚焦.Angular 1具有ng-focus,但我认为Angular 2不再支持它。
<input id="search-Box" type="search" class="form-control [(ngModel)]=query (keyup)=filter()>
    <div id="search-autocomplete" *ngIf="filteredList.length > 0">
        <ul *ngFor="#item of filteredList" >
            <li > <a (click)="select(item)">{{item}}</a> </li>
        </ul>
    </div>

顺便说一句,我使用本教程作为guidance

解决方法

有焦点和模糊事件:
<input (blur)="onBlur()" (focus)="onFocus()">
原文链接:https://www.f2er.com/html/232446.html

猜你在找的HTML相关文章