私はこのコードを使用しています
.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 は関数ではありません
誰にも手がかりはありますか?