jQuery get的跨源策略错误

时间:2012-02-18 16:20:59

标签: jquery cross-domain

我在使用Last.FM的API时遇到了问题。

以下代码在我的localhost上并且有效。我得到了预期的结果。

var url="http://ws.audioscrobbler.com/2.0/?method=geo.gettopartists&country=spain&api_key=xxxxxxxxxxx&format=json&callback=?";
                $(document).ready(function()
                 {
                    $.getJSON(url, function(data)
                    {

                    });
                 });

但是,当我设置一个小型网络服务时,请说“www.example.com/hello”,我的localhost上的以下脚本不起作用。 (它应该返回“你好”。)

var url="www.example.com/hello";
                    $(document).ready(function()
                     {
                        $.get(url, function(data)
                        {

                        });
                     });

现在,我遇到了跨域政策问题。

1 个答案:

答案 0 :(得分:1)