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

如何使用jQuery停止spin.js微调器,jquery,spinner,Jquery,Spinner,刚刚使用了cool spin.jshttp://fgnass.github.com/spin.js/ 使用jQuery 我在旋转器上加了这样的东西 $('#students-list td:nth-child(5)').live('ajax:before', function(){ $(this).append().spin(spinOpts); }); 但在Ajax完成事件后无法停止。 如何对其调用stop方法 谢谢大家 您是否正在使用该页面末尾列出的jQuery插件?如果是这样做: $

刚刚使用了cool spin.jshttp://fgnass.github.com/spin.js/ 使用jQuery

我在旋转器上加了这样的东西

$('#students-list td:nth-child(5)').live('ajax:before', function(){
  $(this).append().spin(spinOpts);
});
但在Ajax完成事件后无法停止。 如何对其调用stop方法


谢谢大家

您是否正在使用该页面末尾列出的jQuery插件?如果是这样做:

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


停止它。

正确答案。谢谢,霍根。请在下面标出已接受的答案
$('#students-list td:nth-child(5)').data('spinner').stop();