ie9以下兼容ajax跨域访问,解决ie9以下浏览器ajax请求报error拒绝访问方案 解决ie9以下浏览器ajax请求报400问题方案

解决方案如下:

1、ie9以下兼容ajax跨域访问  
2、ajax请求开始前添加 jQuery.support.cors = true;  允许跨域
3、ie浏览器设置允许通过域访问数据 并且 url为http协议。(设置=>Internet选项=>安全=>自定义级别=>允许通过域访问数据(设置启用))

示例:

                jQuery.support.cors = true;
				$.ajax({
					type: "GET",
					//             cache: false,
					data: {

					},
					url: url, //请求地址
					dataType: "json",
					success: function(res) {
						console.log(res)
					},
					error: function(err) {
						console.log(err)
					}
				});

以上设置后,如果请求参数中携带有中文,将会报400错误,

解决方法:将传递的参数进行编码,然后传递给后台,js编码encodeURI(中文参数),

                jQuery.support.cors = true; //浏览器支持跨域访问
				var name = encodeURI('泰顺县') //兼容IE浏览器传递中文,解码后可以正常请求
				$.ajax({
					type: "GET",
					//cache: false,
					url: 'http://www.xxxxxx/get?city=' + name, //请求地址
					dataType: "json",
					success: function(res) {
						console.log(res)
					},
					error: function(err) {
						console.log(err)
					}
				});

猜你喜欢

转载自blog.csdn.net/weixin_46408500/article/details/123892817