如何使用 jQuery 停止 spin.js 旋转器

发布于 2024-11-30 15:48:17 字数 284 浏览 0 评论 0原文

刚刚使用了很酷的 spin.js (http://fgnass.github.com/spin.js/) 和 jQuery。

我正在向微调器添加类似的内容

$('#students-list td:nth-child(5)').live('ajax:before', function(){
  $(this).append().spin(spinOpts);
});

,但在 Ajax 完成事件后无法停止它。 如何调用 stop() 方法?

谢谢你们!

just used the cool spin.js (http://fgnass.github.com/spin.js/) with jQuery.

I'm appending the spinner with something like this

$('#students-list td:nth-child(5)').live('ajax:before', function(){
  $(this).append().spin(spinOpts);
});

But can't stop it after an Ajax complete event.
How to call stop() method on it ?

Thanks guys !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

開玄 2024-12-07 15:48:17

您是否使用该页面末尾列出的 jQuery 插件?如果是这样,请执行以下操作:

$('#students-list td:nth-child(5)').spin(false);

$('#students-list td:nth-child(5)').data('spinner').stop();

停止它。

Are you using the jQuery plugin listed at the end of that page? If so do this:

$('#students-list td:nth-child(5)').spin(false);

or

$('#students-list td:nth-child(5)').data('spinner').stop();

To stop it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文