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

一旦从方法调用函数,我需要你的帮助以刷新我的html中的div id="mytable" 。 目前,我使用以下行调用整个页面。

在我的java方法中,我使用下面的行来调用javascript方法:

 RequestContext.getCurrentInstance().execute("autoRefresh()"); 

HTML代码:

  function autoRefresh() { window.location.reload(); }  

你可以加载HTML页面部分,在你的情况下是div#mytable里面的一切。

 setTimeout(function(){ $( "#mytable" ).load( "your-current-page.html #mytable" ); }, 2000); //refresh every 2 seconds 

更多信息请阅读http://api.jquery.com/load/

更新代码(如果您不想自动刷新)