静态网站全站搜索功能

最近在百度发现一个静态网站全站搜索的功能,记录下来备用

 

http://www.baidu.com/search/freecode.html

 

 

<SCRIPT language=javascript>
function g(formname)	{
var url = "http://www.baidu.com/baidu";
if (formname.s[1].checked) {
	formname.ct.value = "2097152";
}
else {
	formname.ct.value = "0";
}
formname.action = url;
return true;
}
</SCRIPT>
<form name="f1" onsubmit="return g(this)">
<table bgcolor="#FFFFFF" style="font-size:9pt;">
<tr height="60"><td valign="top"><img src="http://img.baidu.com/img/logo-137px.gif" border="0" alt="baidu"></td>
<td>
<input name=word size="30" maxlength="100">
<input type="submit" value="百度搜索"><br>
<input name=tn type=hidden value="bds">
<input name=cl type=hidden value="3">
<input name=ct type=hidden>
<input name=si type=hidden value="www.baidu.com">
<input name=s type=radio> 互联网
<input name=s type=radio checked> www.baidu.com
</td></tr></table>
</form>
                                    


通过百度实现站内搜索功能,只需要用您的网站地址替换代码中"www.baidu.com"即可。
提示:如果网页采用utf-8代码,则需要在代码中加入<input name=ie type=hidden value=utf-8>,否则搜索关键词会出现乱码。

 

你可能感兴趣的:(静态网站全站搜索功能)