1. 程式人生 > >select標籤,獲取資料庫中的值作為option. 修改時定位在指定位置

select標籤,獲取資料庫中的值作為option. 修改時定位在指定位置

<select name="memtype"  id="memtype">
       
      <logic:present name="mType">
       <logic:iterate id="p" name="mType">
        <logic:present name="p">
         <bean:define id="t" name="p" property="membertype"/>
         <option value="<%=t.toString()%>" <%if(t.toString().equals(m.toString())) {out.print(" selected");} %>><%=t.toString()%></option>
        </logic:present>
       </logic:iterate>
      </logic:present>
      </select>