我是AJAX,jQuery等的新手。
但是有一个只会自动刷新PHP脚本的函数吗?
答案 0 :(得分:2)
如果您想定期执行javascript函数,请冷使用window.setInterval函数:
window.setInterval(function() {
// this method will execute on every 5 seconds
}, 5000);
所以你可以编写一个函数来向你的PHP脚本发送一个AJAX请求:
window.setInterval(function() {
// replace the contents of an element with id="res"
// every 5 seconds by the result of the PHP script
$('#res').load('/foo.php');
}, 5000);
或者,如果您想重新加载整个页面(不使用AJAX),可以使用window.location.reload();
答案 1 :(得分:0)
你不需要jQuery,只需要简单的旧Javascript。
window.location.reload()
应该重新加载当前页面。如果这是你需要的话,请与window.setTimeout
结合后再做一段时间。
请参阅以下文档: