gpt4 book ai didi

javascript - jquery禁用表单元素

转载 作者:搜寻专家 更新时间:2023-11-01 04:38:36 25 4
gpt4 key购买 nike

场景是我在表单元素上编写了一个自动刷新功能,我希望登录按钮上的 onclick 事件禁用自动刷新功能。

我无法禁用自动刷新,但页面仍在刷新。

我的代码是:

$('#form').ready(function () { //Increment the idle time counter every minute.
var idleInterval = setInterval("timerIncrement()", 15000); // 1 minute

//Zero the idle timer on mouse movement.
$(this).mousemove(function (e) {
idleTime = 0;
});
$(this).keypress(function (e){
idleTime = 0;
});
});

function timerIncrement() {
idleTime = idleTime + 1;
if (idleTime > 2) { // 20 minutes
window.location.reload();
}
}

$('#login').ready(function () {

alert("working promptly");
//Zero the idle timer on mouse movement.
$(this).click(function (e) {
alert("Hi In click !");
$('#form').attr("disabled","true");
});


});

最佳答案

我猜你需要清除间隔计时器:

$(this).click(function (e) {
alert("Hi In click !");
$('#form').attr("disabled","true");
clearInterval(idleInterval);
});

关于javascript - jquery禁用表单元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8893103/

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