返回Google搜索的网址列表

时间:2016-04-28 07:07:15

标签: javascript html arrays

想知道从谷歌搜索结果中返回列表/数组的最简单方法是什么。我将使用JS和Google API

我想做什么呢

谷歌的术语如“狗”

拥有与该搜索相关的网址数组/列表: domainurl1 domainurl2

等。

1 个答案:

答案 0 :(得分:1)

options[google.search.Search.RESTRICT_EXTENDED_ARGS] = {
  'cr': 'countryIT',
  'sort': 'date'
};
var customSearchControl = new google.search.CustomSearchControl(id, options);

以下是获取Return url list

的语法
google.search.CustomSearchControl.CustomSearch
      Control(cseId, opt_options);

您将在此链接中获得正确的详细信息:Return URL list