我有一张桌子。现在我克隆了它。当我使用 tablesorter 时,它说不能在类型对象上使用它。
那么,我怎样才能将它转换为对象。
var clonedTable = $('#originalTable').clone();
$(clonedTable).tablesorter({
widgets: ['zebra'],
headers: {
0:{sorter:false},
1:{sorter:false},
2:{sorter:false},
3:{sorter:false},
4:{sorter:false} }
});
在这里,tablesorter 抱怨说:未捕获的类型错误。object[object object] 没有方法 tablesorter
Edit:
深入研究代码......我注意到原因是这一行:
var clonedTableRows= $('clonedTable tr:gt(0)');
看起来 clonedTableRows 是空的……我的语法错了吗?