$(document).ready(function() {
$.ajax({
type: 'GET',
url: "http://www.google.com/ig/calculator?hl=en&q=1GBP=?USD",
dataType: "json"
}).done(function() {
alert("success");
}).fail(function() {
alert('fail');
});
});
我是新手,所以请有人告诉我为什么会失败?在萤火虫中,我得到了“200 OK”的请求。