Prevent users from submitting a form by hitting Enter

后端 未结 30 3446
感动是毒
感动是毒 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:36

    I can't comment yet, so I'll post a new answer

    Accepted answer is ok-ish, but it wasn't stopping submit on numpad enter. At least in current version of Chrome. I had to alter the keycode condition to this, then it works.

    if(event.keyCode == 13 || event.keyCode == 169) {...}
    

提交回复
热议问题