gpt4 book ai didi

asp.net - 延迟回发怎么办?

转载 作者:行者123 更新时间:2023-12-04 16:35:34 25 4
gpt4 key购买 nike

我在一个假设的页面上有 5 个复选框,如果其中任何一个被选中,我想执行回发。但是,我想稍微延迟回发,以便如果用户选中一个框,它会等待一秒钟左右,以确保用户在往返服务器之前不想选中更多框。因此,如果您快速连续检查所有五个,则可以在发送回发之前检查所有五个。

有没有人做过这个,看过这个,知道怎么做,或者有充分的理由不这样做吗?

最佳答案

你没有说你在使用 jQuery,但为了讨论和清晰起见,我假设它是可用的。类似的东西应该适合你:

var timeout = null;

// Set up code to respond to when the checkbox is checked/unchecked
$('input[type="checkbox"]').change(function() {
// If this is the second check box in a row, clear previous timeout
if (timeout != null)
clearTimeout(timeout);

// Set a timeout that will fire in 5 seconds
timeout = setTimeout(function() {
// Post back the form
__doPostBack();
}, 5000);
});

关于asp.net - 延迟回发怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10149181/

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