作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在同一个页面上有多个表单:我想知道当用户按下“返回键盘键”时,是否有任何方法可以提交正确的表单?
谢谢
最佳答案
这个怎么样:
<form id="form1">
<input type="text" />
</form>
<form id="form2">
<input type="text" />
</form>
<script type="text/javascript">
for (var i = 0; i < document.forms.length; i++) {
document.forms[i].onkeypress = function(e) {
e = e || window.event;
if (e.keyCode == 13)
this.submit();
}
}
</script>
基本上遍历每个表单,为每个检查输入 (keycode == 13) 的表单连接 onkeypress 事件并在该表单上调用提交。
关于html - 返回键 : How to focus the right form,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4053491/
我是一名优秀的程序员,十分优秀!