gpt4 book ai didi

html - 发送没有提交按钮的表格

转载 作者:行者123 更新时间:2023-12-02 09:07:52 25 4
gpt4 key购买 nike

我进行分页,我想在表单编号的文本字段中插入页面,当用户按Enter时将发送页面,或者将光标移出文本字段。

<form method="GET" action="/site">
<input type="text" name="page" />
</form>

我该如何解决这个问题?

最佳答案

您可以使用纯Javascript完成此操作。这是在IIFE中开始的粗略伪代码:

<form method="GET" action="/site">
<input type="text" name="page" id="yourInput" />
</form>

<script>
(function() {
var el = document.getElementById('yourInput'); //Get your input by ID
el.onblur = function() { // when focus lost...
this.form.submit(); // submit the form
}
})();
</script>

关于html - 发送没有提交按钮的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55894495/

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