dedecms指定欄目搜索實(shí)現(xiàn)辦法:
在搜索結(jié)果頁添加:
<input type=”hidden” name=”typeid” value=”1,4″ />
value=”1,4″就是你要指定的一個(gè)或多個(gè)欄目,多個(gè)欄目用,號(hào)隔開。
例如:
<form name=”formsearch” action=”{dede:global.cfg_cmsurl/}/plus/search.php”>
<p class=”form”>
<h4>搜索</h4>
<input type=”hidden” name=”kwtype” value=”0″ />
<input type=”hidden” name=”typeid” value=”1,4″ />
<input name=”q” type=”text” class=”search-keyword” id=”search-keyword” value=”在這里搜索…” onfocus=”if(this.value==’在這里搜索…’){this.value=”;}” onblur=”if(this.value==”){this.value=’在這里搜索…’;}” />
<button type=”submit” class=”search-submit”>搜索</button>
</p>
</form>
按欄目分類搜索下拉 實(shí)現(xiàn)方法:
<form action=”{dede:field name=’phpurl’/}/search.php” name=”formsearch”>
<p class=”form”>
<h4>搜索</h4>
<input type=”hidden” name=”kwtype” value=”0″ />
<input type=”hidden” name=”searchtype” value=”titlekeyword” />
<input name=”keyword” type=”text” class=”search-keyword” id=”search-keyword” />
<select name=”typeid” class=”search-option” id=”typeid”>
<option value=’0′ selected=’1′>全部欄目</option>
{dede:channelartlist typeid=’top’ }
{dede:type} <option value='[field:id/]’>[field:typename/]</option>{/dede:type}
{dede:channel type=’son’ noself=’yes’}
<option value='[field:id/]’>-[field:typename/]</option>
{/dede:channel}
{/dede:channelartlist}
</select><button type=”submit” class=”search-submit”>搜索</button> 本文來自織夢(mèng)模板網(wǎng)
</p>
</form>
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: dedecms指定欄目搜索和按欄目分類搜索下拉