我尝试在更改窗口位置时使用丰富的闪光效果,但是有一个小问题,我无法解决。
请看剧本
$(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
,它工作正常。你能解释一下为什么吗?
谢谢