使用 JQuery 进行 Animate 回调中的 PageLoad
我想在动画结束时执行页面加载事件。这可能很简单。 这是我的 Jquery 代码,
$('#reload span').click(function () {
$('#dl-area').animate('blink', 'fast', null, function () {
location.reload();
});
});
它不起作用。
I would like to do page load event when animation is ended. That's may be pretty simple.
Here is my Jquery code
$('#reload span').click(function () {
$('#dl-area').animate('blink', 'fast', null, function () {
location.reload();
});
});
It's not working.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要 jQuery UI 脉动效果(基于上面的评论),请确保您使用的是 jQuery UI(或只是您使用的子集想要)并使用
.effect()
而不是 < a href="http://api.jquery.com/animate/" rel="nofollow">.animate()
(不采用字符串作为第一个参数), 像这样:If you want the jQuery UI pulsate effect (based on comment above), make sure you're using jQuery UI (or just the subset you want) and use
.effect()
instead of.animate()
(which doesn't take a string as it's first argument), like this: