跨域AJAX调用在IE11中不起作用

时间:2017-05-14 23:26:48

标签: ajax cross-domain internet-explorer-11

我正在尝试进行跨域AJAX调用。它适用于Chrome和Firefox,但不适用于IE11。 IE11似乎放弃了AJAX调用。 IE11开发者工具网络显示甚至没有对网址发出请求。这是我的代码片段。

find . -name '*.js' -exec sh -c '[insert this 'string'] "${0%.js}"' {} \;

1 个答案:

答案 0 :(得分:0)

$.ajax({
    type : "GET",
    cache: false,

或在ajax调用之前

   $.ajaxSetup({ cache: false });

   $.ajax({
    type : "GET",