Prevent users from submitting a form by hitting Enter

后端 未结 30 4427
感动是毒
感动是毒 2020-11-21 05:13

I have a survey on a website, and there seems to be some issues with the users hitting enter (I don\'t know why) and accidentally submitting the survey (form) without clicki

30条回答
  •  清歌不尽
    2020-11-21 05:32

    If you use a script to do the actual submit, then you can add "return false" line to the onsubmit handler like this:

    Calling submit() on the form from JavaScript will not trigger the event.

提交回复
热议问题