博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决IE9下JQuery的ajax失效的问题
阅读量:4915 次
发布时间:2019-06-11

本文共 623 字,大约阅读时间需要 2 分钟。

 

1. 设置浏览器安全属性,启用【通过域访问数据源】选项,如图:

 

2.调用ajax方法时,设置crossDomain为相反的值。原文链接:https://bugs.jquery.com/ticket/12097

<!DOCTYPE html>

<html>
<head>
<title>jQuery CORS in IE7 - IE10</title>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(document).ready(function() {
$.ajax({
url: "http://dreamfactorysql.cloudapp.net/API/index.php",
dataType: "text",
async: true,
type: 'GET',
cache: false,
crossDomain: true == !(document.all),
success: function(txt) {
alert(txt);
}
});
});
</script>
</head>
<body>
IE7 thru IE10 CORS Example Using jQuery
</body>
</html>

 

转载于:https://www.cnblogs.com/cxf520/p/5777119.html

你可能感兴趣的文章
35个seo优化技巧
查看>>
poi横纵导出
查看>>
JAVA中Comparator的使用
查看>>
使用 Cosmos DB 创建和查询 NoSQL 表
查看>>
PAT1043 Is It a Binary Search Tree
查看>>
1044 Shopping in Mars
查看>>
Django 2 数据库配置
查看>>
weka文本分类之二 批量过滤
查看>>
SCM_SVN_CVS
查看>>
设计抗混叠滤波器的三大指导原则(转载)
查看>>
join() 和 sleep() 区别
查看>>
MySQL 'localhost' (10061)解决方法
查看>>
信息安全-1:python之playfair密码算法详解[原创]
查看>>
Linq
查看>>
OC中新增的数据类型
查看>>
在自己的iOS程序中引入自定义字体
查看>>
页面的按钮3d效果
查看>>
CSS-微信开放UI样式
查看>>
TensorFlow 学习(2)——正式起步
查看>>
TableViewer使用
查看>>