可能重复:
为跨域适配 ajax
我正在使用以下代码从 spring webservice 读取 json 数据。
$.getJSON('http://localhost:8080/mobile-services/rest/languages/',
function(data)
{
$("#lang_1").html(data.languages[0].language);
$("#lang_2").html(data.languages[1].language);
$("#lang_3").html(data.languages[2].language);
});
上面的代码片段在 Firefox 和 chrome 中运行良好。它在 Internet Explorer 中不起作用。
我使用 tomcat 作为 web 服务器和 spring 3.0 rest webservices 来生成 JSON 响应。
请建议。