我正在使用 jquery.tmpl 通过 ajax 调用创建表。表行来自数据库。
我包括了所有的tablesorter插件,tablesorte,js,latest.js和css
但它给出了错误,因为 tablesorter 不是一个函数......
$.ajax({
.....
success:function(){
$("#mytable").addClass("tablesorter");
$("#mytable:has(tbody tr)").tablesorter();
}
});