从表中删除jQuery tablesorter

前端之家收集整理的这篇文章主要介绍了从表中删除jQuery tablesorter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用jQuery tablesorter(http://tablesorter.com).

通过$(‘#myTable’).tablesorter()应用到一个表后,如何从表中再次删除

解决方法

没有内置函数来执行此操作,但您可以删除类名和事件绑定以停止其正常运行.请尝试以下操作:
$('table')
 .unbind('appendCache applyWidgetId applyWidgets sorton update updateCell')
 .removeClass('tablesorter')
 .find('thead th')
 .unbind('click mousedown')
 .removeClass('header headerSortDown headerSortUp');

如果您有寻呼机插件运行,上述将不起作用.

原文链接:https://www.f2er.com/jquery/178814.html

猜你在找的jQuery相关文章