织梦DeDeCms 5.6搜索框变为百度多功能搜索框的修改方法

织梦5.6的默认搜索框是这样子的,包括站内搜索、google搜索。 那么我们想要加入百度搜索功能需要怎么做呢? 请看 织梦DeDeCms 5.6搜索框变为百度多功能搜索框的修改方法 :

织梦5.6的默认搜索框是这样子的,包括站内搜索、google搜索。

织梦DeDeCms 5.6搜索框变为百度多功能搜索框的修改方法

那么我们想要加入百度搜索功能需要怎么做呢?

请看织梦DeDeCms 5.6搜索框变为百度多功能搜索框的修改方法

head.htm<form>与</form>之间的代码,替换为以下代码:

  1. <form name=bf onSubmit="bottomForm();return false;">   
  2. <script>   
  3. function bottomForm(){  
  4. var $=document.bf.key.value;  
  5. if(document.bf.sto[0].checked)window.open("./plus/search.php?kwtype=0&keyword="+$,"a1");  
  6. if(document.bf.sto[1].checked)window.open("http://www.baidu.com/s?q1="+"&q6=blog.sina.com.cn","a2");  
  7. if(document.bf.sto[2].checked)window.open("http://www.google.com/search?hl=zh-CN&q="+"&as_sitesearch=blog.sina.com.cn","a3");   
  8. // if(document.bf.sto[3].checked)window.open("http://www.gougou.com/search?id=1&search="+$,"a4");  
  9. // if(document.bf.sto[4].checked)window.open("http://map.baidu.com/m?word="+$,"a5");   
  10. // if(document.bf.sto[5].checked)window.open("http://bk.baidu.com/?kw="+"&submit=search","a6");
  11. return false} 
  12. </script> 
  13. <div class="form"> 
  14. <h4>搜索</h4> 
  15. <!-- <input name="key" class="search-keyword" value="(输入搜索内容……)"> --> 
  16. <input name="key" class="search-keyword" value="(输入搜索内容……)" onfocus="if(this.value=='(输入搜索内容……)'){this.value='';}" 
  17. onblur="if(this.value=='')  
  18. {this.value='(输入搜索内容……)';}"> 
  19. <input name=sto type=radio value="0" checked=true>站内搜索<input name=sto type=radio value="1"> 
  20. <a href="http://www.baidu.com">百度</a> 
  21. <input name=sto type=radio value="2"><a href="http://www.google.cn">Google</a> 
  22. <!--<input name=sto type=radio value="3"><a href="http://www.gougou.com">狗狗</a> 
  23. <input name=sto type=radio value="4"><a href="http://map.baidu.com">地图</a> 
  24. <input name=sto type=radio value="5"><a href="http://baike.baidu.com">百科</a>--> 
  25. <button type="submit" class="search-submit">搜索</button> 
  26. </div> 
  27. </form> 

替换之后的效果是这样子的

织梦DeDeCms 5.6搜索框变为百度多功能搜索框的修改方法

注:其中,“blog.sina.com.cn”换成你自己的独立域名。

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

织梦系统搜索出现错误: Warning: eregi(): REG_EMPTY:empty (sub)expression in \plus\search.php on line 44 44行: if( ($cfg_notallowstr!= eregi($cfg_notallowstr,$keyword)) || ($cfg_replacestr!= 解决办法: 添加词语的时候不要在结尾加 |
织梦dedecms默认的搜索结果页面不支持搜索结果总数的调用,没有这样的标签,但有时候我们需要在搜索 结果页单独显示搜索结果条数,所以我们就得自己通过修改文件来实现了。 首先我们需要找到搜索页面调用的代码文件/include/arc.searchview.class.php,我们
在用织梦建站时,经常会用自己的个人模板,这里有个常见问题,当我们做搜索页面的模板时,我们只需在模板文件夹中加入search.htm模板,其内容和文章列表模板list_article.htm相同就可以了。
★织梦搜索时间间隔如何修改★简介: 我们大家是否经常碰到这样的为,如果想用织梦的搜索功能搜索某些关键词,如果时间间隔太短,总是提示我们时间间隔太短,下面告诉您修改方法。解决办法:1:登录后台,系统
今天在网上看到一个 织梦DedeCMS系统列表页自动统计当前栏目文档总数的方法 ,这里跟大家分享一下! 实现这个功能有2种方法: 第一种:runphp='yes' 第一种实现方法就是利用织梦自带的runphp参数来实现这个功能,只需要在您需要显示统计数量的地方直接加入以
很多站长都想要网站有栏目文章统计功能,织梦模板之家特意为大家搜集整理了两种方法来实现这个功能,方法如下: