Jquery ajax, when periodicaly called, doesnt work on IE8

前端 未结 3 1912
情深已故
情深已故 2021-01-13 01:31

I am currently doing the same ajax request using jQuery every 2sec. For some reason, on IE8 it only work the first time. Each following request automatically seems to go to

3条回答
  •  南笙
    南笙 (楼主)
    2021-01-13 02:25

    IE has a caching feature... it's possible that it has just cached your request. Make sure you append something like a random number to your query string, like so:

    var url = "/yoururl.html";
    url = url + "&random=" + Math.random();
    

提交回复
热议问题