我希望使用 JavaScript 每 5 秒执行一次 php 程序。我怎样才能做到这一点?
我尝试使用:
<script type="text/javascript">
setInterval(
function (){
$.load('update.php');
},
5000
);
</script>
但它不起作用。
我希望使用 JavaScript 每 5 秒执行一次 php 程序。我怎样才能做到这一点?
我尝试使用:
<script type="text/javascript">
setInterval(
function (){
$.load('update.php');
},
5000
);
</script>
但它不起作用。
使用 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);
尝试使用setInterval()
来执行 XHR 调用。(jQuery,非 jQuery)
setInterval(function() {
// Ajax call...
}, 5000);
这将每 5 秒在函数内执行您的代码