让搜索框变身为百度搜索
作者:秋了秋 发表时间:2015年07月23日
有的权重高的网站为了更体现权重价值以及减轻自身服务器负担,总所周知搜索是很耗数据库资源的,如果同时在线人数多且同时搜索的人也比较多的话,很容易造成服务器奔溃,故很多网站都禁闭了搜索功能。这样对用户体验甚是不好。我们可以把搜索框变身为百度搜索。 html搜索框代码示例:
<form name="search_form" target="_blank" onsubmit="return go(this)" method="get" action="http://www.baidu.com/s?"> <input type="text" class="form-control" placeholder="" name="word"> <span class="input-group-btn"> <button type="submit">搜索</button> </span> </form>
注意:name="word"不可更改,js代码为:
<script language="javascript"> function go(formname) { var url = "http://www.baidu.com/s?"; formname.method = "get"; formname.action = url; return true; } </script>
这样的话在搜索框键入文字点击搜索将会跳转到百度站 内搜索。
2
文章作者: “秋了秋”个人博客,本站鼓励原创。
转载请注明本文地址:http://netblog.cn/blog/369.html