提问人:Andrew G. Johnson 提问时间:11/9/2008 最后编辑:kristofAndrew G. Johnson 更新时间:5/6/2021 访问量:65007
如何向我的网站添加集成的 Google 搜索?
How can I add an integrated Google search to my website?
问:
基本上我有一个网站。我有一个正确设置的站点地图,所以我假设 Google 知道我的所有页面。我在一些网站上看到,搜索表单指向一个带有原始网站外壳的页面,但结果显然是由 Google 提供的。与codinghorror.com的搜索类似,但是他的结果不会显示在其网站的布局中。
知道我在说什么或如何实现这一目标吗?
答:
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>
评论
<form></form>
自定义谷歌搜索的一种简单方法是使用 adsense 进行搜索,它允许您:
- 在一个或多个站点或整个互联网中搜索。
- 在新窗口、当前窗口或 iframe 中打开。
- 自定义搜索结果的颜色。
- 它还可以为广告的任何点击支付美分。
^ 也许您正在寻找 Google 自定义搜索引擎
正如列出的另一位回答者所指出的那样,我相信自定义搜索就是您正在寻找的。
只是想提供额外的信息。谷歌也有网站搜索,但你需要付费。
看看 Google 网站站长工具:http://www.google.com/webmasters/
特别是: http://www.google.com/sitesearch/
评论
对于基于主要 Google 索引的免费解决方案,使用查询并且仅对外观进行少量控制,请尝试 Google 自定义搜索引擎。site:
只需几百美元,就可以获得更全面和最新的网站索引,并完全控制外观,试试 Google Site Search。
对于需要完全控制索引和搜索体验的各个方面的企业,并且需要索引中数千到数百万个项目,请尝试使用 Google Search Appliance。
我之前对另一个问题提出了同样的答案,所以这就是答案
转到此链接 https://www.google.com/cse/ 并创建帐户 创建自定义搜索框 随心所欲地定制外观 自定义后复制代码 粘贴到您的博客或网站中您希望搜索框出现的位置。
如果你想要像我的网站这样的搜索框,http://www.latestgames2.com/ 只是自定义了所有的颜色和形状
评论