gpt4 book ai didi

javascript - 通过 JS 自动提交表单(超时、时间间隔)

转载 作者:行者123 更新时间:2023-11-28 04:41:37 25 4
gpt4 key购买 nike

我想创建简单的自动提交。例如,如果用户 1 秒内未在输入中键入任何内容或按 Enter 键,则提交。我的代码:

$(document).on('keypress', $('input'), function(e) {
console.log('clear')

clearInterval(SubmitInterval);

if (e.which == 13) {
console.log('submit')
}

var SubmitInterval = setInterval(function() {
console.log('submit')
clearInterval(SubmitInterval);
}, 1000);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type=text id=1 />

但是效果很差。谢谢

最佳答案

该问题是由于您在每次按键时重新定义了 SubmitInterval 变量造成的。而是在事件处理程序之外声明一次。试试这个:

var submitInterval;

$(document).on('keypress', 'input', function(e) {
console.log('clear')

clearInterval(submitInterval);

if (e.which == 13) {
console.log('submit')
}

submitInterval = setInterval(function() {
console.log('submit')
clearInterval(submitInterval);
}, 1000);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type=text id=1 />

关于javascript - 通过 JS 自动提交表单(超时、时间间隔),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43723773/

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