HTML:如何在<div>中刷新信息

时间:2015-08-13 08:19:27

标签: javascript php jquery html ajax

我有div链接到php文件。在'test.php'中包含与DB和表结果的连接。

require ('test.php');

每隔30秒如何刷新上下文????

2 个答案:

答案 0 :(得分:3)

$(document).ready(function(){
  setInterval(function(){
    $.post('test.php', { someParameter: 'someValue' }, function(data){
      $('#my-container').html(data);
    });
  }, 30000);
});

答案 1 :(得分:0)

假设您正在讨论的div位于index.php,并且您已在index.php中使用了jQuery。

的index.php

<div id="refreshMe"></div>
<script type="text/javascript">
setInterval(
  function(){ $.get("test.php", function(data){$("#refreshMe").html(data);}); }, 
30000);
</script>

这应该可以达到你想要的效果。