仅在IE9上存在的ajax调用中拒绝访问

时间:2012-05-21 02:46:14

标签: javascript ajax internet-explorer xmlhttprequest

使用Xmlhttprequest进行ajax调用时遇到此问题。我在Firefox,Chrome,Safari上测试代码,它们都运行良好。只有IE上存在的问题,我使用的版本是9。 有些人说我应该启用跨域支持。实际上,我添加了Access-Control-Allow-Origin:* http响应头。有任何想法吗?感谢。

我的代码是:

var xhr = new XMLHttpRequest();
var query = queryString.pageName.abbr + "="
        + encodeURIComponent(queryString.pageName.value) + "&"
        + queryString.pageURL.abbr + "="
        + encodeURIComponent(queryString.pageURL.value);
var getURL = "http://localhost:10001/test?" + query;

xhr.open('GET', getURL, false);
var result;
xhr.onreadystatechange = function() {
    var responseBody;
    if (xhr.readyState == 2) { // headers and status received
        alert(xhr.status);
    } else if (xhr.readyState == 4) { // full body received
        result = xhr.responseText;
    }
};
xhr.send(null);

1 个答案:

答案 0 :(得分:0)

此处出现相同问题的人:http://css-tricks.com/forums/discussion/17449/xmlhttprequest-not-working-in-ie9/p1。 也许这会有所帮助:http://msdn.microsoft.com/en-us/library/cc288060。 我也会像其他人一样推荐使用jQuery。他们考虑这些问题:http://bugs.jquery.com/ticket/8283