3

我正在使用 jQuery 1.7.2 并想向另一个域发出 POST 请求。它必须是一个 POST 请求。但这在 Internet Explorer 中不起作用(我在 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.\r\n"}

我的 PHP 文件如下所示:

<?php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST, DELETE, PUT, OPTIONS');
echo json_decode(array('success' => 'yes'));
4

4 回答 4

2

Internet Explorer(包括 IE9)不支持CORS。您必须代理所有跨域请求(发布到同一域上的 PHP 脚本,使用 curl 重新发布您的查询并返回响应)

于 2012-05-01T09:27:58.983 回答
2

要在 IE < 10 中支持 CORS,您必须修改 ajax 方法以使用 XDomainRequest 对象。这个插件为你做:https ://github.com/jaubourg/ajaxHooks

于 2012-09-26T20:25:17.297 回答
1

您的脚本看起来正确,但我相信您需要更改:

header('Access-Control-Allow-Origin: *');

header('Access-Control-Allow-Origin: x-requested-with');

或者

header('Access-Control-Allow-Origin: {Origin}');

其中 {Origin} 是 Origin 标头的值。我的理解是,如果已经给出了 Origin,那么仅仅输入 '*' 是行不通的。

此外,IE8 和 IE9 对此的支持有限,但如果您输入 ,它确实可以工作jQuery.support.cors = true,就像您所做的那样。

于 2012-06-01T19:05:37.413 回答
0

这适用于 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>
于 2013-07-20T23:37:44.843 回答