我正在使用jQuery 1.7.2,并希望向另一个域发出POST请求。它必须是 POST 请求。但这在IE浏览器中不起作用(我在IE9上尝试过);它适用于所有其他浏览器。
我有这个脚本:
<script>
jQuery.support.cors = true;
jQuery(function() {
$.ajax({
crossDomain : true,
cache: false,
type: 'POST',
url: 'http://someotherdomain/test.php',
data: {},
success: function(da) {
console.log(JSON.stringify(da))
},
error: function(jqxhr) {
console.log('fail')
console.log(JSON.stringify(jqxhr))
},
dataType: 'json'
});
});
</script>
我得到错误:
{"readyState":0,"status":0,"statusText":"Error: Access denied.rn"}
我的PHP文件看起来像这样:
<?php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, DELETE, PUT, OPTIONS');
echo json_decode(array('success' => 'yes'));
Internet Explorer(包括IE9)不支持CORS。您必须代理所有跨域请求(发布到同一域上的 PHP 脚本,该脚本使用 curl 重新发布您的查询并返回响应)
若要在 IE <10 中支持 CORS,必须修改 ajax 方法以使用 XDomainRequest 对象。这个插件为你做这件事:https://github.com/jaubourg/ajaxHooks
您的脚本看起来正确,但我认为您需要更改:
header('Access-Control-Allow-Origin: *');
自
header('Access-Control-Allow-Origin: x-requested-with');
或
header('Access-Control-Allow-Origin: {Origin}');
其中 {Origin} 是 Origin 标头的值。我的理解是,如果给出了起源,仅输入"*"是行不通的。
此外,IE8 和 IE9 对此的支持有限,但如果您像您所做的那样放入 jQuery.support.cors = true
,它确实有效。
在IE9中有效。
<!DOCTYPE html>
<head>
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
var url = "http://msdn.microsoft.com/en-us/library/windows/desktop/ms759148(v=vs.85).aspx";
function getRequest() {
try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); }
catch (e) {alert("Error while getting 6.0");}
try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); }
catch (e) {alert("Error while getting 3.0");}
try { return new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e) {alert("Error while getting 2.0");}
throw new Error("This browser does not support XMLHttpRequest.");
};
var request = getRequest();
request.open("POST", url, false);
request.send();
alert("Content from :"+url+":"+ request.responseText);
</script>
</head>
<h1>AJAX ActiveX</h1>