0

私は自分のフォームを持っています:次のように選択します:

<form:select class="select" path="pmiProfile.proProfileNamePk" name="pmiProfile" value="pmiProfile.proProfileNamePk">
    <option value="ROLE_ADMIN" ><spring:message code="pmi.user.add.admin"></spring:message></option>
    <option value="ROLE_USER" ><spring:message code="pmi.user.add.user"></spring:message></option>
</form:select>

jquery、私は最も簡単な方法を使用しました:

$("select").prop('selectedIndex',1);

私が得たのは、選択したインデックスは適切に設定されていますが、コンボボックスに表示される値は変更されていません. なんで?

生成された HTML、これのことですか?

<div class="form-margin-ten">
    <div class="select2-container select" id="s2id_pmiProfile.proProfileNamePk">
        <a href="javascript:void(0)" onclick="return false;" class="select2-choice" tabindex="-1">
        <span class="select2-chosen">User</span><abbr class="select2-search-choice-close"></abbr>
        <span class="select2-arrow"><b></b></span></a>
        <input class="select2-focusser select2-offscreen" type="text" id="s2id_autogen1">
    </div>
    <select id="pmiProfile.proProfileNamePk" name="pmiProfile.proProfileNamePk" class="select select2-offscreen" tabindex="-1">
        <option value="ROLE_ADMIN">Admin</option>
        <option value="ROLE_USER">User</option>
    </select>
</div>
4

2 に答える 2

0

どうですか: $("select").attr("selectedIndex", 1);

于 2014-05-21T08:44:37.427 に答える
0

次のようなものを試してください: $("select option:eq(1)").prop("selected", true)

于 2014-05-21T08:22:46.827 に答える