表单中点击回车自动提交数据
Posted Passionate_Coder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表单中点击回车自动提交数据相关的知识,希望对你有一定的参考价值。
<form action="**.php" method="post">
<input type="text" name="username"/>
<input type="password" name="pwd"/>
<input type="submit" onclick="if(event.keyCode==13){gosubmit();}">//Enter 的键值是13
</form>
以上是关于表单中点击回车自动提交数据的主要内容,如果未能解决你的问题,请参考以下文章
在 Bootstrap 模式窗口中单击 Enter 并点击提交按钮时提交表单数据
在 Struts 2 + jQuery + json 中按回车键停止提交表单