0

我正在使用 Spring 3.1.1.RELEASE。使用 form:select 标签,我如何指定应该选择哪个选项?我希望选择第一个,但是当我放

            <form:select path="parentOrganization">
                <form:option value="" label="Select an Org Type or Parent Org" />
                <form:options items="${orgTypesWoParents}" itemValue="id" itemLabel="description" />
                <form:option value="" label="=======================" />
            </form:select>

最后一个被选中。我想保留所有内容的显示顺序,这就是我以这种方式安排事物的原因。

4

1 回答 1

1
    <form:select path="parentOrganization">
            <form:option value="" selected="selected" label="Select an Org Type or Parent Org" />
            <form:options items="${orgTypesWoParents}" itemValue="id" itemLabel="description" />
            <form:option value="" label="=======================" />
        </form:select>
于 2012-11-28T17:16:10.837 回答