我想获得搜索谷歌图片的JSON。我正在使用Jquery。 https://developers.google.com/image-search/v1/jsondevguide我正在本指南的帮助下尝试。这是我到目前为止所做的。
$.getJSON("https://ajax.googleapis.com/ajax/services/search/images?callback=?",{q:input,v:'1.0'},function(data){
$("#r").html("Picture: ");
$("#r").append('<img src="'+data.responseData.results[0].url+'">');
})
但它没有执行回调函数。我该怎么办?什么是必要的参数?