织梦dede搜索结果页按频道模型显示不同模板

思路:给搜索框加一个判定,例如搜索软件模型的时候显示一个模板,搜索文章模型的时候显示一个模板

1、 在head区域加入
 

<script language="javascript" type="text/javascript">  

  

<!–  

  

 function check(){  

  

  if(document.formsearch.channeltype.value=http://www.hake.cc/="3")  

  

  document.formsearch.action="{dede:field name='phpurl'/}/search_images.php"  

  

  else  

  

  document.formsearch.action="{dede:field name='phpurl'/}/search.php"  

  

 }  

  

–>  

  

</script>  


2 、 更改搜索代码


<form  name="formsearch" action="" *****ubmit="check();">  

  

        <div class="form">  

  

           <input type="hidden" name="kwtype" value=http://www.hake.cc/"0" />  

  

           <input name="q" type="text" class="search-keyword" id="search-keyword" value=http://www.hake.cc/"{dede:global name='keyword' function='RemoveXSS(@me)'/}" />  

  

       <select name="channeltype" id="channeltype" >  

  

    <option value='′ selected='1′>新闻</option>  

  

        <option value='′>软件</option>  

  

           </select>  

  

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

  

        </div>  

  

   </form>  


其中重点就是
 

    <select name="channeltype" id="channeltype" >

    <option value='′ selected='1′>新闻</option>

        <option value='′>软件</option>

      </select>
 

这里设置的按游戏模型搜索  1是文章模型3是软件模型
 

3 复制serach.PHP 更名为search_images.php
 

4 打开search_images.php
 

 require_once(DEDEINC."/arc.searchview.class.php");

更改为

 require_once(DEDEINC."/arc.searchimg.class.php");
 

5复制arc.searchview.class.php 更名为arc.searchimg.class.php
 

6 打开arc.searchimg.class.php
 

修改

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/4f6b2403494d480af3cd699e57f09f45.html