首先,你应听取Rory和Sargiv两点意见中的建议,因为这将产生混淆行为,但如果你仍然坚持这样做,你就可以在后面添加习惯教条。
$.tablesorter.addParser({
// set a unique id
id: surname ,
is: function(s) {
// return false so this parser is not auto detected
return false;
},
format: function(s) {
var parts = s.split(" ");
// alert(parts[1]);
// return surname here
return parts[1];
},
// set type, either numeric or text
type: text
});
之后添加这一句子,作为标题。
$( table ).tablesorter({
// include zeba widgets
widgets: [ zebra ],
headers: {
0: {
sorter: surname
}
}
});
http://jsfiddle.net/welcse06/2TZAn/1/“rel=” http://jsfiddle.net/welcse06/2TZAn/1/,通过点击标题检查,忽略了其他领域,因为我编辑了现有的单。
http://tablesorter.com/docs/example-parsers.html