Prevent form submission on enter key

后端 未结 15 1298
夕颜
夕颜 2020-12-05 06:24

How can I prevent the enter key from submitting the form in angular?

Is there a way to catch the 13 key and disable it or set the form as invalid unless submitting f

15条回答
  •  再見小時候
    2020-12-05 06:51

    Check this:

    if a form has 2+ input fields and no buttons or input[type=submit] then hitting enter doesn't trigger submit

    Thus if your form has 2+ input fields, you could use something like Sumbit to prevent key-trigger of enter key in those input fields.

提交回复
热议问题