刚刚使用了很酷的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()方法呢?
谢谢你们!
答案 0 :(得分:35)
您使用的是该页末尾列出的jQuery插件吗?如果是这样的话:
$('#students-list td:nth-child(5)').spin(false);
或
$('#students-list td:nth-child(5)').data('spinner').stop();
要阻止它。