我想在点击按钮时动态添加谷歌图片。
经过大量搜索我发现的是:
var searcher = new google.search.customSearchControl.getImageSearcher();
searcher.setRestriction(
google.search.customSearchControl.getImageSearcher.RESTRICT_FILETYPE,
google.search.customSearchControl.getImageSearcher.FILETYPE_JPG
);
searcher.setRestriction(
google.search.customSearchControl.getImageSearcher.RESTRICT_COLORIZATION,
google.search.customSearchControl.getImageSearcher.COLORIZATION_GRAYSCALE
);
searcher.execute('London');
但是我无法在我的代码中使用它。 有没有办法在儿子对象中接收图像?