我們拿dedecms程序官方默認模板的搜索去修改實現以下,教程如下
把模板文件head.htm 中的以下代碼:
把模板文件head.htm 中的以下代碼:
<form action="{dede:field name='phpurl'/}/search.php" name="formsearch"><div class="form"><h4>搜索</h4><input type="hidden" name="kwtype" value="0" /><input name="keyword" type="text" class="search-keyword" id="search-keyword" /><select name="searchtype" class="search-option" id="search-option"><option value="titlekeyword" selected='1'>智能模糊搜索</option><option value="title">僅搜索標題</option></select><button type="submit" class="search-submit">搜索</button></div></form>
修改為:
<form action="/plus/advancedsearch.php" method="post"><div class="form"><h4>搜索</h4><input type="hidden" name="mid" value="1" /><input type="hidden" name="dopost" value="search" />關鍵詞:<input type="text" name="q" /> <input type="submit" name="submit" value="開始全文搜索" /></div></form>


