我正在制作一个基本的PHP' Game'用于学习目的。
对我来说,这完全是关于学习PHP类的。
我有javascript的这一部分来继续加载包含' game'的2个div。信息:
function bla() {
var timeTillWinner = $(".time").html();
if (timeTillWinner < '20') {
$(".container").fadeOut();
//alert(timeTillWinner);
}
}
// function to reload the container
function pageUpdate(){
$('body').load(document.URL + '#playerList').load(document.URL + '.table-information');
bla();
}
setInterval(pageUpdate, 10000);
fadeOut()行不起作用,但警报没问题。在我的firebug上的web控制台中,我每次调用pageUpdate()函数时都会看到:
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help http://xhr.spec.whatwg.org/
SyntaxError: syntax error jquery.min.js:1
有关如何解决此错误的任何帮助?我可以沿着使用AJAX等加载div内容的路线,但是当我在PHP上工作时,我只想要一些简单的东西。
谢谢!