struts2列表框中的默认值

时间:2011-05-30 11:47:40

标签: jsp listbox struts2 struts jsp-tags

我们有列表框。这将显示美国的不同州。我希望状态“LA”应该被预选。但我不知道列表中“LA”的位置。它可能会有所不同。我们正在使用以下脚本。

<select id="state" name="state" title="State" class="js_required prompt_text grid_2" tabindex="5">
                <option>State</option>
                <s:iterator value="@com.homeservices.action.utils.StateCode@values()">
                    <option value="<s:property/>"><s:property/></option>
                </s:iterator>
</select>

var @ com.homeservices.action.utils.StateCode @ values()给出了一个值列表:

AA
AE
AK
CA
CT
IL
LA
MA
MD

......等等。

有人可以建议如何将洛杉矶作为预选州。

2 个答案:

答案 0 :(得分:5)

Struts方法

<s:select id="state"
          name="state"
          title="State"
          headerKey=""
          headerValue="State"
          list="@action.StateCode@values()"
          cssClass="js_required prompt_text grid_2"
          value="@action.StateCode@LA"
          tabindex="5"/>

JSP方法(JSTL / JSP-EL)

<%@ page import="action.StateCode" %>
<c:set var="states" value="<%=StateCode.values()%>"/>

<select id="state" name="state" title="State"
        class="js_required prompt_text grid_2" tabindex="5">
    <option>State</option>
    <c:forEach items="${states}" var="state">
        <option value="${state}" ${state == 'LA' ? 'selected="selected"' : ''}>${state}</option>
    </c:forEach>
</select>

答案 1 :(得分:0)

将此脚本放在</html>之前和填充state

之后
<script type="text/javascript">
        document.getElementById("state").value = "LA";
</script>