当用户单击链接时,我正在尝试重新加载表数据(行/TR),我可以添加更多/附加吗?数据,但我似乎无法在插入新表数据之前删除旧表数据。(顺便说一句:updatetable.php 包含该表的所有(TR))
这是我正在尝试做的事情:
$(function() {
$("#append").click(function() {
var test;
$.get('updatetable.php', function(data) {
test = data;
$("#tablesorter-demo").remove();
$("#tablesorter-demo").append(test);
$("#tablesorter-demo").trigger.update(); // <--- I think that error is here, I tried to take out the trigger. but it still doesn't work ?
alert(test);
//return false;
});
});
href代码是:<a id="append" href="#">Refresh Page</a>