1 頁 (共 1 頁)

搜尋主題

發表於 : 2008-04-29 , 13:18
懸壺子
搜尋主題
需要更改哪個程式? 謝謝
如圖所示 謝謝
1%E6%8B%B7%E8%B2%9D.jpg
1%E6%8B%B7%E8%B2%9D.jpg (29.19 KiB) 已瀏覽 1156 次
心靈捕手 寫:
關鍵在調整 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 ]-----
#
來源:http://phpbb-tw.net/phpbb/viewtopic.php?f=116&t=50665