我想刷新从 MySQL DB 填充的数据表的内容。所以,由于数据库可能会实时更新,我想在数据表的顶部添加刷新按钮。我的代码如下:
<div id="refresh">
<button id="refresh-table">Refresh</button>
<br>
</div>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#tabbb').dataTable({
"sPaginationType":"full_numbers",
"aaSorting":[[5, "asc"]],
"bJQueryUI":true
});
$(".refresh_table").click(function() {
table=$("#tabbb").dataTable();
table.fnPageChange("first",1);
});
});
</script>
问题是当我点击刷新按钮时,什么也没有发生。