您可以部分加载HTML页面,这是div#mytable中的所有内容。
setTimeout(function(){ $( "#mytable" ).load( "your-current-page.html #mytable" );}, 2000); //refresh every 2 seconds
有关更多信息,请阅读此http://api.jquery.com/load/
更新代码(如果您不希望它自动刷新)<button id="refresh-btn">Refresh Table</button><script>$(document).ready(function() { function RefreshTable() { $( "#mytable" ).load( "your-current-page.html #mytable" ); } $("#refresh-btn").on("click", RefreshTable); // OR CAN THIS WAY // // $("#refresh-btn").on("click", function() { // $( "#mytable" ).load( "your-current-page.html #mytable" ); // });});</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)