IE9下JQuery发送ajax请求失效
2021-07-11 10:07
标签:doctype 项目 false xxx div min cti class query 最近在做项目的时候,测试PC端网页,在IE9下会失效,不能正常的发送POST请求,经过仔细的排查,发现是IE9下JQuery发送ajax存在跨域问题。 目前有两种解决方案: 解决方案一: 设置浏览器安全属性,启用【通过域访问数据源】选项,如下图所示: 解决方案二: 调用ajax方法时,设置crossDomain为true,如下图所示: IE9下JQuery发送ajax请求失效 标签:doctype 项目 false xxx div min cti class query 原文地址:http://www.cnblogs.com/chenyablog/p/7086321.htmlDOCTYPE html>
html>
head>
title>jQuery CORS in IE7 - IE10title>
script src="http://code.jquery.com/jquery-xxxx.min.js">script>
script>
$(document).ready(function() {
$.ajax({
url: "http://xxxx.php",
dataType: "text",
async: true,
type: ‘GET‘,
cache: false,
crossDomain: true ,
success: function(txt) {
//TODO
}
});
});
script>
head>
body>
IE7到IE10使用jQuery跨域!!!
body>
html>
文章标题:IE9下JQuery发送ajax请求失效
文章链接:http://soscw.com/index.php/essay/103666.html