需要更改哪個程式? 謝謝
如圖所示 謝謝
來源:http://phpbb-tw.net/phpbb/viewtopic.php?f=116&t=50665心靈捕手 寫:
關鍵在調整 checked="checked" 的預設位置.
以下的修改, 提供您參考 (以風格 prosilver 為例)
#
#-----[ OPEN ]-----
#
styles/prosilver/template/search_body.html
#
#-----[ FIND ]-----
##代碼: 選擇全部
<dl> <dt><label for="sf1">{L_SEARCH_WITHIN}:</label></dt> <dd><label for="sf1"><input type="radio" name="sf" id="sf1" value="all" checked="checked" /> {L_SEARCH_TITLE_MSG}</label></dd> <dd><label for="sf2"><input type="radio" name="sf" id="sf2" value="msgonly" /> {L_SEARCH_MSG_ONLY}</label></dd> <dd><label for="sf3"><input type="radio" name="sf" id="sf3" value="titleonly" /> {L_SEARCH_TITLE_ONLY}</label></dd> <dd><label for="sf4"><input type="radio" name="sf" id="sf4" value="firstpost" /> {L_SEARCH_FIRST_POST}</label></dd> </dl> <hr class="dashed" /> <dl> <dt><label for="show_results1">{L_DISPLAY_RESULTS}:</label></dt> <dd> <label for="show_results1"><input type="radio" name="sr" id="show_results1" value="posts" checked="checked" /> {L_POSTS}</label> <label for="show_results2"><input type="radio" name="sr" id="show_results2" value="topics" /> {L_TOPICS}</label> </dd> </dl>
#-----[ REPLACE WITH ]-----
##代碼: 選擇全部
<dl> <dt><label for="sf1">{L_SEARCH_WITHIN}:</label></dt> <dd><label for="sf1"><input type="radio" name="sf" id="sf1" value="all" /> {L_SEARCH_TITLE_MSG}</label></dd> <dd><label for="sf2"><input type="radio" name="sf" id="sf2" value="msgonly" /> {L_SEARCH_MSG_ONLY}</label></dd> <dd><label for="sf3"><input type="radio" name="sf" id="sf3" value="titleonly" checked="checked" /> {L_SEARCH_TITLE_ONLY}</label></dd> <dd><label for="sf4"><input type="radio" name="sf" id="sf4" value="firstpost" /> {L_SEARCH_FIRST_POST}</label></dd> </dl> <hr class="dashed" /> <dl> <dt><label for="show_results1">{L_DISPLAY_RESULTS}:</label></dt> <dd> <label for="show_results1"><input type="radio" name="sr" id="show_results1" value="posts" /> {L_POSTS}</label> <label for="show_results2"><input type="radio" name="sr" id="show_results2" value="topics" checked="checked" /> {L_TOPICS}</label> </dd> </dl>
#-----[ SAVE & CLOSE ]-----
#







