jQuery - > getJSON - >外部服务器上的数据加载失败 - >仅IE问题< - 所有其他浏览器都有效

时间:2011-06-21 02:54:56

标签: javascript jquery json

jQuery - > getJSON - >外部服务器上的数据加载失败。

这适用于除IE9之外的所有其他浏览器。我在php脚本上设置了标题(active ... origin:* etc),它从主服务器提供JSON数据。

jQuery / getJSON需要发生什么才能让IE检索数据。

1 个答案:

答案 0 :(得分:0)

尝试使用JSONP

这是您在php脚本中需要做的事情

<?
$data = '{"name" : "hello world"}';
echo $_GET['jsoncallback'] . '(' . $data . ');';
?>

并在网址中添加

&jsoncallback=?