IE特定的AJAX访问问题

时间:2012-04-15 09:41:50

标签: jquery ajax internet-explorer-9 yahoo-pipes

我在调试AJAX请求时遇到问题。 (它是async因为它是隧道)

无论如何,它在Chrome和Firefox上运行良好,但至少在IE8 / 9中失败。

var responseA = '';

$.ajax({
    type: 'GET',
    url: 'http://pipes.yahooapis.com/pipes/pipe.run?_id=xxxxxx&url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Fthe_hunger_games%2F&_render=json',
    async: true,
    dataType: 'json',
    success: function(text) {
        responseA = text;
    },
    error: function(jqXHR, textStatus, errorThrown) {
        console.log(errorThrown);
    }
});

console.log(responseA);​

errorThrown抛出LOG: No Transport

我尝试添加$.support.cors = true;

尝试解决任何跨域问题,但现在我得到了

LOG: Error: Access is denied.(仅在IE中)给出了什么?

1 个答案:

答案 0 :(得分:1)

Internet Explorer 8(及以下版本)不支持CORS,您必须代理他们的请求(通过同一域的PHP脚本,调用远程脚本并返回输出)