duaeim2874 2014-03-08 17:31
浏览 96

JQuery getJSON在IE中不起作用

I created a simple html in which I download data from MYSQL using php and jQuery. It works fine in Chrome(data refresh every 5 sec) but in IE even if the window.setInterval works fine the data downloads only once when the document is loaded for first time and after that the data is not refreshing.

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);

What am I doing wrong?

  • 写回答

1条回答 默认 最新

  • dongwen3093 2014-03-08 18:44
    关注

    I think you need to use XDomainRequest for ie. Try with this code

    var xdr = new XDomainRequest();
    xdr.onload = function() { alert("READY"); };
     xdr.open("GET", "http://taxipolis.gr/phpfiles/drivers/get_alldrivers_coordinate_html.php");
    xdr.send();
    

    Checkout this link for more info

    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!