0

当我说谷歌搜索时,我并不是指我的网站的搜索栏,我希望它有一个搜索栏,如果他们在其中写了一些东西,它会在谷歌上搜索吗?

像这样的东西:

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

我会为此只使用 css 和 html 吗?或者我可以使用 JavaScript 或其他东西让它变得更好而不那么简单吗?

4

2 回答 2

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>
于 2013-06-08T03:57:20.520 回答
0

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

于 2013-06-08T04:30:44.157 回答