程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 更改dedeCMS的搜索框為多功能搜索

更改dedeCMS的搜索框為多功能搜索

編輯:PHP綜合

把 head.htm 的 <form>與</form>之間的代碼,替換為以下代碼:

 <form name=bf onSubmit="bottomForm();return false;">
   <script>
 function bottomForm(){
 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=www.5loveb.com","a2");
 if(document.bf.sto[2].checked)window.open("http://www.google.com/search?hl=zh-CN&q="+"&as_sitesearch=","a3");
 return false}
 </script>  <div class="form">
 <h4>搜索</h4>
<!-- <input name="key" class="search-keyword" value="(輸入搜索內容……)"> -->
<input name="key" class="search-keyword" value="(輸入搜索內容……)" onfocus="if(this.value=='(輸入搜索內容……)')
{this.value='';}"  onblur="if(this.value==''){this.value='(輸入搜索內容……)';}">
 <input name=sto type=radio value="0" checked=true>本站內
 <input name=sto type=radio value="1"><a href="http://www.baidu.com">百度</a>
 <input name=sto type=radio value="2"><a href="http://www.google.cn">Google</a>

 <button type="submit" class="search-submit">搜索</button>
 </div>
 </form>

 <form name=bf onSubmit="bottomForm();return false;">
   <script>
 function bottomForm(){
 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=","a2");
 if(document.bf.sto[2].checked)window.open("http://www.google.com/search?hl=zh-CN&q="+"&as_sitesearch=","a3");
 return false}
 </script>  <div class="form">
 <h4>搜索</h4>
<!-- <input name="key" class="search-keyword" value="(輸入搜索內容……)"> -->
<input name="key" class="search-keyword" value="(輸入搜索內容……)" onfocus="if(this.value=='(輸入搜索內容……)'){this.value='';}"  onblur="if(this.value==''){this.value='(輸入搜索內容……)';}">
 <input name=sto type=radio value="0" checked=true>
本站內  <input name=sto type=radio value="1"><a href="http://www.baidu.com">百度</a>
 <input name=sto type=radio value="2"><a href="http://www.google.cn">Google</a>
 <button type="submit" class="search-submit">搜索</button>
 </div>
 </form>

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved