如何向我的网站添加集成的 Google 搜索?

How can I add an integrated Google search to my website?

提问人:Andrew G. Johnson 提问时间:11/9/2008 最后编辑:kristofAndrew G. Johnson 更新时间:5/6/2021 访问量:65007

问:

基本上我有一个网站。我有一个正确设置的站点地图,所以我假设 Google 知道我的所有页面。我在一些网站上看到,搜索表单指向一个带有原始网站外壳的页面,但结果显然是由 Google 提供的。与codinghorror.com的搜索类似,但是他的结果不会显示在其网站的布局中。

知道我在说什么或如何实现这一目标吗?

搜索 google-custom-search

评论

0赞 Just Me 6/25/2021
在这里,很简单:neculaifantanaru.com/en/......

答:

14赞 VonC 11/9/2008 #1

2008 年 11 月:像这样(但你会在这里找到一个更新的 2012 年示例)

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

<div style="border:1px solid black;padding:4px;width:20em;">
<table border="0" cellpadding="0">
<tr><td>
<input type="text"   name="q" size="25"
 maxlength="255" value="" />
<input type="submit" value="Google Search" /></td></tr>
<tr><td align="center" style="font-size:75%">
<input type="checkbox"  name="sitesearch"
 value="askdavetaylor.com" checked /> only search Ask Dave Taylor<br />
</td></tr></table>
</div>

</form>

为了在单独的框架中显示结果,您以此站点为例。

这将是大致如下的内容:

<html>
<head>
    <meta http-equiv="Content-Language" content="en-gb">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

    <script language="javascript" type="text/javascript">
    function showFrame () {
        var e = document.getElementById("if1");
        e.style.visibility = "visible" ;
    }
    </script>
</head>

<body>
    <p> </p>
    <p>
    <span id="spSearch" onclick="showFrame()">Search</span>
    </p>
    <p> </p>
    <p><iframe name="I1" id="if1" width="100%" height="254" style="visibility:hidden" src="http://www.google.co.uk">
        Your browser does not support inline frames or is currently configured not to display inline frames.
    </iframe></p>
</body>
</html>

评论

0赞 Andrew G. Johnson 11/9/2008
这只是将查询转发给 Google,我说的是让结果显示在您的布局中。有没有可能我所看到的只是一个 iframe?
0赞 Just Me 5/5/2021
我到底在哪里复制/粘贴到html页面中?一定是另一页吗?<form></form>
0赞 VonC 5/5/2021
@JustMe 13 年后,我不太确定,但我会直接在您的 HTML 页面的正文中假设。我已经恢复了第一个链接:web.archive.org/web/20081231030633/http://www.askdavetaylor.com/...。它确实向您展示了一个示例。
0赞 Just Me 5/5/2021
谢谢,我在这里找到了答案 stackoverflow.com/questions/13822927/......
0赞 VonC 5/6/2021
@JustMe好的,感谢您的反馈。我已将您的链接包含在答案中以提高知名度。
1赞 Osama Al-Maadeed 11/9/2008 #2

自定义谷歌搜索的一种简单方法是使用 adsense 进行搜索,它允许您:

  • 在一个或多个站点或整个互联网中搜索。
  • 在新窗口、当前窗口或 iframe 中打开。
  • 自定义搜索结果的颜色。
  • 它还可以为广告的任何点击支付美分。
14赞 Karan 11/9/2008 #3

https://cse.google.com/cse/

^ 也许您正在寻找 Google 自定义搜索引擎

3赞 dtc 11/9/2008 #4

正如列出的另一位回答者所指出的那样,我相信自定义搜索就是您正在寻找的。

只是想提供额外的信息。谷歌也有网站搜索,但你需要付费。

看看 Google 网站站长工具:http://www.google.com/webmasters/

特别是: http://www.google.com/sitesearch/

评论

0赞 Andrew G. Johnson 11/9/2008
谢谢,我认为网站搜索实际上是我一直在寻找的
5赞 Liam 11/14/2008 #5

对于基于主要 Google 索引的免费解决方案,使用查询并且仅对外观进行少量控制,请尝试 Google 自定义搜索引擎site:

只需几百美元,就可以获得更全面和最新的网站索引,并完全控制外观,试试 Google Site Search

对于需要完全控制索引和搜索体验的各个方面的企业,并且需要索引中数千到数百万个项目,请尝试使用 Google Search Appliance

-1赞 MM Nauman 11/17/2013 #6

我之前对另一个问题提出了同样的答案,所以这就是答案

转到此链接 https://www.google.com/cse/ 并创建帐户 创建自定义搜索框 随心所欲地定制外观 自定义后复制代码 粘贴到您的博客或网站中您希望搜索框出现的位置。

如果你想要像我的网站这样的搜索框,http://www.latestgames2.com/ 只是自定义了所有的颜色和形状