我正在使用此代码
.wrapInner('<span title="sort this column"/>')
.each(function () {
var th = $(this),
thIndex = th.index(),
inverse = false;
th.click(function () {
table.find('td').filter(function () {
return $(this).index() === thIndex;
}).sortElements(function (a, b) {
return $.text([a]) > $.text([b]) ? inverse ? -1 : 1 : inverse ? 1 : -1;
}, function () {
// parentNode is the element we want to move
return this.parentNode;
});
inverse = !inverse;
});
});
尝试订购一张桌子但是我不断收到以下错误
TypeError: table.find("td").filter(function () {return $(this).index() === thIndex;}).sortElements 不是函数
有没有人有任何线索?