如何使用jQuery停止spin.js微调器

时间:2011-08-21 10:44:29

标签: jquery spinner

刚刚使用了很酷的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()方法呢?

谢谢你们!

1 个答案:

答案 0 :(得分:35)

您使用的是该页末尾列出的jQuery插件吗?如果是这样的话:

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

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

要阻止它。