gpt4 book ai didi

html - 返回键 : How to focus the right form

转载 作者:可可西里 更新时间:2023-11-01 13:40:22 24 4
gpt4 key购买 nike

我在同一个页面上有多个表单:我想知道当用户按下“返回键盘键”时,是否有任何方法可以提交正确的表单?

谢谢

最佳答案

这个怎么样:

<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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com