I am making use of a tablesorter library. My issue is that every item in a cell inside of my table is a link, and the library starts sorting things incorrectly because it s looking at the HTML inside the cell, instead of the text. In other words, in the following cell contents;
<a href="ledger.php?var=345345">$100.64</a>
it sorts on:
<a href="ledger.php?var=345345">
instead of $100.64
我知道,有办法研究牢房内的案文。 我开始采用他们在网站text提取方法。 然而,我能够让我的生活得到适当的运作。
利用我的《联合材料》法典,谁能告诉我如何适当运用这一案文? 这就是我现在的(下文)。
该法典的目前结果,即“案文提取”线是NOT,即原始物没有装上,而且该页上的所有舱位都未能装上。 网上开发商金中的独角错误是:
Error: node.childNodes[0]child 否 资料来源:档案。
$(document).ready( function () {
// TableSorter
$("#dt-results")
.tablesorter({
widgets: [ zebra ],
sortList: [[0,1]],
// define a custom text extraction function
textExtraction: function(node) {
// extract data from markup and return it
return node.childNodes[0].childNodes[0].innerHTML;
}
})
.tablesorterPager({container: $("#pager")})
.tablesorterFilter({filterContainer: $("#filter-box"),
filterClearContainer: $("#filter-clear-button"),
filterCaseSensitive: false,
filterWaitTime: 100});
});
增 编