js input 框输入监听事件(keyup、nzBlur)

 <input type="text" placeholder="名称" (keyup)="searchDataByName()" (nzBlur)="tab($event)">


 <script>


     function tab(event){
       console.log(event);
     }


</script>

猜你喜欢

转载自blog.csdn.net/qq_34790644/article/details/83272542
今日推荐