作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在更改窗口位置时使用类似 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/
我是一名优秀的程序员,十分优秀!