如何使用 jQuery 停止 spin.js 旋转器
刚刚使用了很酷的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用该页面末尾列出的 jQuery 插件?如果是这样,请执行以下操作:
或
停止它。
Are you using the jQuery plugin listed at the end of that page? If so do this:
or
To stop it.