Angular 2: How to prevent a form from submitting on keypress enter?

前端 未结 4 1376
谎友^
谎友^ 2021-01-04 05:25

I have a form with one field that acts as autocomplete. If the user enters a word and presses enter, the content of the field should be added to a list below the field.

4条回答
  •  别那么骄傲
    2021-01-04 06:16

    Prevent a form from submittion on enter or by clicking a button

    
    
    
    
    provoked($event) {
       $event.preventDefault()
    }
    

    in case if you need to pass data to the method, then try

    
    
    
    
    provoked($event, data) {
       $event.preventDefault()
    
       // process the data here
    }
    

提交回复
热议问题