现在的位置: 首页 > 综合 > 正文

html-el:optionsCollection,html-el:options,JSTL c:forEach用法比较

2014年11月23日 ⁄ 综合 ⁄ 共 864字 ⁄ 字号 评论关闭

前提,areaInfoList是存在 request 或更高级别作用域的一个 List 实例。

1、html-el:optionsCollection 用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <html-el:optionsCollection name="areaInfoList" label="area_name" value="area_code" />
   </html-el:select>
   代码较少,有回显功能。

2、html-el:options用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <html-el:options collection="areaInfoList" labelProperty="area_name" property="area_code" />
   </html-el:select>
   代码较少,有回显功能,但属性名称不易理解。

3、JSTL的用法:

   <html-el:select property="area_code" styleId="area_code">
       <html-el:option value="">请选择所属省份</html-el:option>
       <c:forEach var="cur" items="${areaInfoList}">
           <html-el:option value="${cur.area_code}">${cur.area_name}</html-el:option>
       </c:forEach>
   </html-el:select>
   代码较多,没有回显功能

抱歉!评论已关闭.