前端之家收集整理的这篇文章主要介绍了
如何用jQuery停止spin.js spinner,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
刚刚用jQuery使用了cool spin.js(http://fgnass.github.com/spin.js/).
我在附加一些这样的旋转器
$('#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();
停止它
原文链接:https://www.f2er.com/jquery/180392.html