如何按ENTER键发送表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何按ENTER键发送表单相关的知识,希望对你有一定的参考价值。

Suppose you have a login form and you want to send the form when user press enter on his keyboard and not only by clicking on the submit button.
This can be achieved capturing a specific event when the user is typing. We have to capture the keypress event and listen to trigger an action when the enter key is pressed. Example and code in the link above.
  1. <script type="text/javascript">
  2. function submitonenter(formid,evt,thisObj) {
  3. evt = (evt) ? evt : ((window.event) ? window.event : "")
  4. if (evt) {
  5. // process event here
  6. if ( evt.keyCode==13 || evt.which==13 ) {
  7. thisObj.blur();
  8. document.getElementById(formid).submit();
  9. }
  10. }
  11. }
  12. </script>

以上是关于如何按ENTER键发送表单的主要内容,如果未能解决你的问题,请参考以下文章