he_shuai 发表于 2009-8-28 00:55:06

<html:select>

Description:

<html:select   property="if_end">   

    <option   value="0">否</option>   

    <option   value="1">是</option>   

</html:select>   

将option中value的值给if_end


动态用法一:

<html:select   property="personnelId">   

      <html:option   value="">请选择</html:option>   

      <html:options       collection="personList"   property="personId"   labelProperty="personName"/>   

</html:select>



    html:options自动帮你迭代personList中的内容,前提是personList是Collection类型的,而且封装的是一个包含personId,personName属性的对象   

    property显示的是value,labelProperty显示的是页面看到的内容

动态用法二:

有时候用标签的限制太多就用下面这个:

<SELECT   name="deid">   

            <logic:iterate   id="depart"   name="departarray1"   >   

            <option   value="<bean:write   name="depart"   property="deId"/>">   

            <bean:write   name="depart"   property="deName"/>   

            </option>   

            </logic:iterate>   

</SELECT>

alexanty 发表于 2009-9-3 20:18:20

這個是幹什麼啊
页: [1]
查看完整版本: <html:select>