我正在使用jQuery tablesorter(http://tablesorter.com).
通过$(‘#myTable’).tablesorter()应用到一个表后,如何从表中再次删除?
@H_502_4@解决方法
没有内置函数来执行此操作,但您可以删除类名和事件绑定以停止其正常运行.请尝试以下操作:
$('table') .unbind('appendCache applyWidgetId applyWidgets sorton update updateCell') .removeClass('tablesorter') .find('thead th') .unbind('click mousedown') .removeClass('header headerSortDown headerSortUp');
如果您有寻呼机插件运行,上述将不起作用.
@H_502_4@ @H_502_4@ 原文链接:https://www.f2er.com/jquery/178814.html