gpt4 book ai didi

javascript - setTimeout 不适用于 window.location?

转载 作者:行者123 更新时间:2023-11-30 07:11:38 24 4
gpt4 key购买 nike

我尝试在更改窗口位置时使用类似 flash 的效果,但是有一个小问题,我无法解决。

请看脚本

 $(document).ready(function(){

$('a.flash').click(function(e) {
e.preventDefault();
$('body').fadeOut(1500);
setTimeout("", 1500);
window.location=this.href;
});
});

window.location=this.href 必须在 1500 毫秒后完成,但它并没有发生。你能解释为什么吗?奇怪的是,当我尝试编写 alert("something"); 而不是 window.location=this.href 时,它工作正常。你能解释一下为什么吗?

谢谢

最佳答案

$(document).ready(function(){

$('a.flash').click(function(e) {
var el = this;
e.preventDefault();
$('body').fadeOut(1500);
setTimeout( function() { location=el.href }, 1500 );
});
});

您应该提供一个回调函数作为 setTimeout 的第一个参数,它会在 1500 毫秒后调用。

关于javascript - setTimeout 不适用于 window.location?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3033243/

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