我有div链接到php文件。在'test.php'中包含与DB和表结果的连接。
require ('test.php');
每隔30秒如何刷新上下文????
答案 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>
这应该可以达到你想要的效果。