这是我的代码:
$("document").ready(function () {
var jqxhr = $.ajax({
url: "http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
success: function () {
$("#foo").text("second success");
},
error: function (xhr, status, error) {
$("#foo").text(JSON.stringify(xhr));
},
complete: function () {
}
});
});
这是标记:
<body>
<div id="foo"></div>
</body>
返回(序列化并放入#foo
)的数据是:
{
"readyState":0,
"responseText":"",
"status":0,
"statusText":"error"
}
我不知道我做错了什么。请帮忙。
这是一个小提琴:http: //jsfiddle.net/U2gm9/4/