2

我希望使用 JavaScript 每 5 秒执行一次 php 程序。我怎样才能做到这一点?

我尝试使用:

<script type="text/javascript">
    setInterval(
        function (){
            $.load('update.php');
        },
        5000
    );
</script>

但它不起作用。

4

2 回答 2

17

使用 jQuery 和setInterval

setInterval(function() {
    $.get('your/file.php', function(data) {
      //do something with the data
      alert('Load was performed.');
    });
}, 5000);

或者没有 jQuery:

setInterval(function() {
    var request = new XMLHttpRequest();
    request.onreadystatechange = function() {
         if (request.readyState == 4 && request.status == 200) {
            console.log(request.responseText);
         }
      }
    request.open('GET', 'http://www.blahblah.com/yourfile.php', true);
    request.send();

}, 5000);
于 2012-12-28T08:55:39.377 回答
7

尝试使用setInterval()来执行 XHR 调用。(jQuery非 jQuery

setInterval(function() {
    // Ajax call...
}, 5000);

这将每 5 秒在函数内执行您的代码

于 2012-12-28T08:55:06.070 回答