当前位置: 博客首页 >> 网页设计制作 >> 怎么给网站添加Google和百度、雅虎的站内搜索代码 rss

怎么给网站添加Google和百度、雅虎的站内搜索代码

成都网站优化 在 2010-06-26 发表,评论(0),阅读(0)

怎么给网站添加Google和百度、雅虎的站内搜索代码?

Google和百度、雅虎的站内搜索可以使访问者快速的找到想要浏览的内容,而使用搜索引擎来进行站内搜索往往比自己编写的站内搜索更高效,并且不占用网站服务器的资源。

下面是主流搜索引擎Google、百度和雅虎的站内搜索代码,使用时只需要将代码里的"www.sw996.com"替换成你的网址即可。缺点是没有收录的文章将不会被搜索到。

将以下代码插入网页<body>--代码--</body>之间即可

<!–Google站内搜索开始–>
<form method=get action="http://www.google.com/search">
<input type=text name=q>
<input type=submit name=btnG value="Google 搜索">
<input type=hidden name=ie value=GB2312>
<input type=hidden name=oe value=GB2312>
<input type=hidden name=hl value=zh-CN>
<input type=hidden name=domains value="www.sw996.com">
<input type=hidden name=sitesearch value="www.sw996.com">
</form>

<!–Google 站内搜索结束–>

<!–百度Baidu站内搜索开始–>
<form action="http://www.baidu.com/baidu">
<input type=text name=word>
<input type="submit" value="Baidu 搜索">
<input name=tn type=hidden value="bds">
<input name=cl type=hidden value="3">
<input name=ct type=hidden value="2097152">
<input name=si type=hidden value="www.sw996.com">
</form>
<!–Baidu 站内搜索结束–>

<!–雅虎Yahoo站内搜索开始–>
<form action="http://www.yahoo.com.cn/search">
<input type=text name="p">
<input type="submit" value="Yahoo 搜索">
<input type=hidden name=vs value="www.sw996.com">
</form>
<!–Yahoo 站内搜索结束–>

以下是Google和百度的Javascript版的站内搜索代码

<!–Google站内搜索开始–>
<script type="text/javascript">
function googlesearch () {
var wq=document.getElementsByName("wq")[0].value;
var link="http://www.google.com/search?domains=www.sw996.com&sitesearch=www.sw996.com&q="+wq;
window.open(link); }
</script>
<input type="text" name="wq"/><input type="submit" onclick="javascript:googlesearch()" value="Google 搜索" />

<!–Google站内搜索结束–>
<!–Baidu站内搜索开始–>
<script language="javascript">
function baidusearch () {
var wd=document.getElementsByName("wd")[0].value;
var link="http://www.baidu.com/s?si=www.sw996.com&cl=3&ct=2097152&tn=baidulocal&word="+wd;
window.open(link); }
</script>
<input type="text" name="wd"/><input type="submit" onclick="javascript:baidusearch()" value="Baidu 搜索" />
<!–Baidu 站内搜索结束–>

Tags:Google百度雅虎

思为网络腾讯企业微博,请关注我们:
已有位网友对“怎么给网站添加Google和百度、雅虎的站内搜索代码”发表评论。

 

www.sw996.com/seoblog/