解决方法
看来IE11与他的userAgent有问题。
周转是改变clearTableBody函数(在jquery.tablesorter-2.0.3.js中工作),如下所示:
周转是改变clearTableBody函数(在jquery.tablesorter-2.0.3.js中工作),如下所示:
this.clearTableBody = function (table) { //if ($.browser.msie) { function empty() { while (this.firstChild) this.removeChild(this.firstChild); } empty.apply(table.tBodies[0]); //} else { // table.tBodies[0].innerHTML = ""; //} };