織夢5.6的默認搜索框是這樣子的,包括站內搜索、google搜索。
那么我們想要加入百度搜索功能需要怎么做呢?
請看織夢DeDeCms 5.6搜索框變為百度多功能搜索框的修改方法:
把head.htm的<form>與</form>之間的代碼,替換為以下代碼:
-
<formname=bfonSubmit="bottomForm();returnfalse;">
-
<script>
-
functionbottomForm(){
-
var$=document.bf.key.value;
-
if(document.bf.sto[0].checked)window.open("./plus/search.php?kwtype=0&keyword="+$,"a1");
-
if(document.bf.sto[1].checked)window.open("http://www.baidu.com/s?q1="+"&q6=blog.sina.com.cn","a2");
-
if(document.bf.sto[2].checked)window.open("http://www.google.com/search?hl=zh-CN&q="+"&as_sitesearch=blog.sina.com.cn","a3");
-
//if(document.bf.sto[3].checked)window.open("http://www.gougou.com/search?id=1&search="+$,"a4");
-
//if(document.bf.sto[4].checked)window.open("http://map.baidu.com/m?word="+$,"a5");
-
//if(document.bf.sto[5].checked)window.open("http://bk.baidu.com/?kw="+"&submit=search","a6");
-
returnfalse}
-
</script>
-
<divclass="form">
-
<h4>搜索</h4>
-
<!--<inputname="key"class="search-keyword"value="(輸入搜索內容……)">-->
-
<inputname="key"class="search-keyword"value="(輸入搜索內容……)"onfocus="if(this.value=='(輸入搜索內容……)'){this.value='';}"
-
onblur="if(this.value=='')
-
{this.value='(輸入搜索內容……)';}">
-
<inputname=stotype=radiovalue="0"checked=true>站內搜索<inputname=stotype=radiovalue="1">
-
<ahref="http://www.baidu.com">百度</a>
-
<inputname=stotype=radiovalue="2"><ahref="http://www.google.cn">Google</a>
-
<!--<inputname=stotype=radiovalue="3"><ahref="http://www.gougou.com">狗狗</a>
-
<inputname=stotype=radiovalue="4"><ahref="http://map.baidu.com">地圖</a>
-
<inputname=stotype=radiovalue="5"><ahref="http://baike.baidu.com">百科</a>-->
-
<buttontype="submit"class="search-submit">搜索</button>
-
</div>
-
</form>
替換之后的效果是這樣子的
注:其中,“blog.sina.com.cn”換成你自己的獨立域名。