我创建了一个简单的html,我使用php和jQuery从MYSQL下载数据。它在Chrome中运行良好(每5秒刷新一次数据)但在IE中,即使window.setInterval
工作正常,数据只会在第一次加载文档时下载一次,之后数据也不会刷新。
function myFunc(){
console.log("it works");
$(document).ready(function(){
$.getJSON("http://taxipolis.gr/phpfiles/drivers/get_alldrivers_coordinate_html.php",
function (data) {
});
});
}
window.setInterval(myFunc,5000);
我做错了什么?
答案 0 :(得分:0)
我认为你需要使用XDomainRequest
来表示ie。试试这段代码
var xdr = new XDomainRequest();
xdr.onload = function() { alert("READY"); };
xdr.open("GET", "http://taxipolis.gr/phpfiles/drivers/get_alldrivers_coordinate_html.php");
xdr.send();
结帐link了解详情