我正在尝试进行跨域AJAX调用。它适用于Chrome和Firefox,但不适用于IE11。 IE11似乎放弃了AJAX调用。 IE11开发者工具网络显示甚至没有对网址发出请求。这是我的代码片段。
find . -name '*.js' -exec sh -c '[insert this 'string'] "${0%.js}"' {} \;
答案 0 :(得分:0)
$.ajax({
type : "GET",
cache: false,
或在ajax调用之前
$.ajaxSetup({ cache: false });
$.ajax({
type : "GET",