如何使用jqueryajax刷新div中的表内容

如何使用jqueryajax刷新div中的表内容,第1张

如何使用jquery / ajax刷新div中的表内容

您可以部分加载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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5016367.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存