当滚动事件发生时,我需要能够等待一定的时间。
代码:
$(window).scroll(function()
{
if($(window).scrollTop() + $(window).height() == $(document).height())
{
setTimeout(function (){}, 1000); //I need to be able to wait 1 second and then continue with execution...
$(".loader").show().delay(700).fadeOut();
$.ajax({ ///more code });
}
});
知道有什么问题吗?
为什么setTimeout()
在这个特定的例子中不起作用?