如何使用JavaScript每5秒加载一个PHP文件

时间:2012-12-28 08:53:08

标签: php javascript jquery

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

我尝试使用:

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

但它不起作用。

2 个答案:

答案 0 :(得分: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);

答案 1 :(得分:7)

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

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

这将每5秒在函数内执行一次代码