織夢默認(rèn)代碼有這樣一個代碼,方便快捷解決這樣的難題。只需要在模板搜索代碼中加入 “<input type='hidden' name='typeid' value="欄目ID號">” 即可。
以下分享下實站操作案例:
要求:網(wǎng)站首頁有一個搜索;要求在產(chǎn)品欄目下增加一個搜索框,指定欄目文檔搜索。首頁的搜索框是全站內(nèi)容搜索,產(chǎn)品欄目下搜索框指定欄目搜索。
首頁搜索框代碼為:
<form action="/plus/search.php" name="formsearch"> <input type="hidden" name="kwtype" value="0"> <input type='hidden' name='typeid' value="4"> <input type="text" name="q" value="請輸入關(guān)鍵詞" onblur="if (this.value ==''){this.value=this.defaultValue}" onclick="if(this.value=='請輸入關(guān)鍵詞')this.value=''"> <input type="submit" name="submit" value="搜 索" style="border:0"> </form>
產(chǎn)品欄目下搜索框代碼為:
<form action="/plus/search.php" name="formsearch"> <input type="hidden" name="kwtype" value="0"> <input type='hidden' name='typeid' value="4"> <input type="text" name="q" value="請輸入產(chǎn)品關(guān)鍵詞" class="s_w" onblur="if (this.value ==''){this.value=this.defaultValue}" onclick="if(this.value=='請輸入產(chǎn)品關(guān)鍵詞')this.value=''"> <input type="submit" name="submit" value="搜 索" style="border:0"> </form>
指定欄目搜索,只需要加入如下代碼即可:
<input type='hidden' name='typeid' value="4"> //這里的4為指定欄目的ID號
搜索效果圖:
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢dedecms搜索指定欄目文檔方法