在网页中自定义Google搜索

时间:2014-01-02 10:20:12

标签: html forms

我想知道如何制作我自己的自定义谷歌搜索。

我可以这样做:

<form action="http://www.google.com/search=q?+text input" method="get">
<input type="search">
<input type="submit">
</form>

3 个答案:

答案 0 :(得分:1)

请尝试使用Google提供的custom search api。虽然它不是纯HTML。 以下代码演示了如何使用显式parsetag和函数回调在div中呈现搜索框和搜索结果:

<div id="test"></div>

<script>
var myCallback = function() {
  if (document.readyState == 'complete') {
    // Document is ready when CSE element is initialized.
    // Render an element with both search box and search results in div with id 'test'.
    google.search.cse.element.render(
        {
          div: "test",
          tag: 'search'
         });
  } else {
    // Document is not ready yet, when CSE element is initialized.
    google.setOnLoadCallback(function() {
       // Render an element with both search box and search results in div with id 'test'.
        google.search.cse.element.render(
            {
              div: "test",
              tag: 'search'
            });
    }, true);
  }
};

// Insert it before the CSE code snippet so that cse.js can take the script
// parameters, like parsetags, callbacks.
window.__gcse = {
  parsetags: 'explicit',
  callback: myCallback
};

(function() {
  var cx = '123:456'; // Insert your own Custom Search engine ID here
  var gcse = document.createElement('script'); gcse.type = 'text/javascript';
  gcse.async = true;
  gcse.src = (document.location.protocol == 'https' ? 'https:' : 'http:') +
      '//www.google.com/cse/cse.js?cx=' + cx;
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
})();
</script>

这是教程link

答案 1 :(得分:0)

谷歌有自己的演练, https://www.google.com/cse/

答案 2 :(得分:0)

请参阅以下步骤以创建Google自定义搜索

1.首先,您已注册Google帐户

2.go to 此网址 https://www.google.com/cse/create/new

3.然后指定网站URL(搜索的位置)

4.点击“创建”按钮

5.在下一页中,有3个按钮可用于点击“获取代码”按钮。

6.点击后,生成代码。复制该代码并粘贴到您的网页中。