AJAX刷新整个PHP页面

时间:2018-10-25 18:35:35

标签: php ajax refresh

如何更新我页面上的所有php数据?我有通讯系统,我需要刷新所有php数据以更新聊天消息,用户状态等,例如每750毫秒。我认为AJAX可以做到,但我不知道如何。

1 个答案:

答案 0 :(得分:0)

您可以尝试一下,它每750秒刷新一次,每750毫秒生成一次随机数

<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>
$(document).ready(
 function() {
 setInterval(function() {
 var someval = Math.floor(Math.random() * 100);
  $('#sample').text('Test' + someval);
 }, 700);  //Delay here = 750 milliseconds 
});
</script>
</head>
<body>

<div id="sample">Testing refresh every 750 milliseconds</div>
</body>