在网站上进行Google搜索?

时间:2013-06-08 03:55:22

标签: javascript html css search

当我说谷歌搜索时,我并不是指我的网站只是一个搜索栏,我希望它有一个搜索栏,如果他们在那里写一些东西,那就在Google上搜索它?

这样的事情:

<form method="get" action="http://www.google.com/search">

我会使用css和html吗?或者我可以使用JavaScript或其他东西来使它更好,更简单?

2 个答案:

答案 0 :(得分:1)

这应该有效:

<form name="cse" id="searchbox_demo" action="http://www.google.com/cse">
  <input type="hidden" name="cref" value="" />
  <input type="hidden" name="ie" value="utf-8" />
  <input type="hidden" name="hl" value="" />
  <input name="q" type="text" size="40" />
  <input type="submit" name="sa" value="Search" />
</form>
<script type="text/javascript" src="http://www.google.com/cse/tools/onthefly?form=searchbox_demo&lang="></script>

答案 1 :(得分:0)

在Google中输入Google自定义搜索。它具有在您的网站中嵌入Google搜索的所有步骤:)