具體的實現(xiàn)代碼如下:
1.在head區(qū)域加入
代碼如下:
<script language="javascript" type="text/javascript">
function check(){
if(document.formsearch.channeltype.value=="1")
document.formsearch.action="{dede:field name='phpurl'/}/search.php"
else
document.formsearch.action="{dede:field name='phpurl'/}/search_news.php"
}
</script>
2.更改搜索代碼
代碼如下:
<form name="formsearch" action="" data-ke-onsubmit="check();">
<div class="form">
<input type="hidden" name="kwtype" value="0" />
<input name="q" type="text" class="search-keyword" id="search-keyword" value="{dede:global name='keyword' function='RemoveXSS(@me)'/}" />
<select name="channeltype" id="channeltype" >
<option value='1' selected='1'>新聞</option>
<option value='3'>軟件</option>
</select>
<button type="submit" class="search-submit">搜索</button>
</div>
</form>
其中重點就是
代碼如下:
<select name="channeltype" id="channeltype" >
<option value='1' selected='1'>新聞</option>
<option value='3'>軟件</option>
</select>
關(guān)鍵設(shè)置:這里設(shè)置的按模型搜索 1是文章模型 3是軟件模型
3.復(fù)制serach.php 更名為 search_images.php
4.打開 search_images.php
將
代碼如下:
require_once(DEDEINC."/arc.searchview.class.php");
更改為
代碼如下:
require_once(DEDEINC."/arc.searchimg.class.php");
5.復(fù)制 arc.searchview.class.php 更名為 arc.searchimg.class.php
6.打開 arc.searchimg.class.php
查找
代碼如下:
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/search.htm";
更改為
代碼如下:
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/search_images.htm
更多信息請查看IT技術(shù)專欄