1. 程式人生 > >angular2事件觸發

angular2事件觸發

opd 選擇 options 輸入 ace 輸入框 lac inpu hold

輸入框輸入值觸發Select()方法。
<input type="text" name="code" [(ngModel)]="code" (keyup)="Select()">

輸入框輸入查詢值後,點擊Enter鍵觸發Select()方法。
<input type="text" name="code" [(ngModel)]="code" (keyup.enter)="Select()">

選中下拉框值觸發search()方法,filter="filter"支持輸入值的模糊查詢。
<p-dropdown [options]="customercodeList"  [(ngModel)]="customermanage.customercode" name="customercode" filter="filter" (onChange)="search()" placeholder="請選擇">
{{customercodeList.label}}
</p-dropdown>



angular2事件觸發