how to add onchange event on dropdown in angular ?

前端 未结 2 1463
北海茫月
北海茫月 2021-02-05 09:46

could you please tell me how to add onchange event on dropdown in angular ? I made a simple demo in which initially I fetch bank names and show in drop down<

2条回答
  •  南方客
    南方客 (楼主)
    2021-02-05 10:39

    try this.

    
    
    public onOptionsSelected(event) {
       const value = event.target.value;
       this.selected = value;
       console.log(value);
    }
    

提交回复
热议问题