gpt4 book ai didi

javascript - 使用 jquery 显示进程(或等待)光标不工作

转载 作者:太空宇宙 更新时间:2023-11-03 18:32:56 25 4
gpt4 key购买 nike

$(document).ready(function(){
//other stuff
$(".active_item").click(function() {
$("body").css("cursor", "progress"); //tried wait instead of progress as well
window.setTimeout(someLength,4000);//just to make sure we do switch back at some point
$('#list tbody tr').each(function(i) {
$(this).removeClass('invisible_row');
});
$("#list tbody tr").show();
$('.catnav').each(function(i) {
$(this).removeClass('current_category');
});
$("body").css("cursor", "default");
});
});

我检查了其他问题,例如 Changing cursor to waiting in javascript/jquery

但在我的代码中它不起作用(如果我选择那个,光标不会更改为“progress”或“wait”)。

最佳答案

您可以尝试将 show() 函数用作计时器,这样您的光标将至少停留一秒钟。

$("#list tbody tr").show(1000 // Enter the time you want here , function(){$("body").css("cursor", "default");});

这样您的光标将在函数 show() 完成后返回默认值,这需要 1 秒(在我的示例中)。

可以查看.show() documentation获取更多信息。

关于javascript - 使用 jquery 显示进程(或等待)光标不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19409637/

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