使用 JQuery 进行 Animate 回调中的 PageLoad

发布于 2024-10-02 17:18:50 字数 225 浏览 4 评论 0原文

我想在动画结束时执行页面加载事件。这可能很简单。 这是我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2024-10-09 17:18:51

如果您想要 jQuery UI 脉动效果(基于上面的评论),请确保您使用的是 jQuery UI(或只是您使用的子集想要)并使用 .effect() 而不是 < a href="http://api.jquery.com/animate/" rel="nofollow">.animate() (不采用字符串作为第一个参数), 像这样:

$('#reload span').click(function() {
   $('#dl-area').effect('pulsate', 'fast', function() {
       location.reload(true);
   });
});

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:

$('#reload span').click(function() {
   $('#dl-area').effect('pulsate', 'fast', function() {
       location.reload(true);
   });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文