Closed. This question is off-topic。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
4年前关闭。
我有一段代码可以在Mozilla中很好地工作,但不能在Chrome中工作。
可能是什么问题?
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
4年前关闭。
我有一段代码可以在Mozilla中很好地工作,但不能在Chrome中工作。
function yoxi(){
var xhr = new XMLHttpRequest;
xhr.open("GET", "yoxi.php", false);
xhr.send(null);
}
function getirus(){
var xhr = new XMLHttpRequest;
xhr.open("GET", "getirus.php", false);
xhr.send(null);
document.getElementById('onlineus').innerHTML=xhr.responseText;
}
setInterval(yoxi, 5000);
setInterval(getirus, 5000);
setinterval
不能在Chrome中反复使用。可能是什么问题?
最佳答案
尝试这个:
setInterval(function() {
yoxi();
}, 5000);
setInterval(function() {
getirus();
}, 5000);
关于javascript - Chrome中的setinterval无法像Mozilla一样工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33278796/
10-11 19:50