2

dropdownjqueryでリストの選択項目のidを選択したい

networkId = $("#availableFbProfiles").selectedIndex.id;

しかし、コンソールのエラーは

Cannot read property 'id' of undefined
4

3 に答える 3

4

これを試して:

networkId = $("#availableFbProfiles option:selected").prop("id");

古いバージョンの jQuery (< 1.7) を使用している場合は、attr()代わりにprop().

于 2012-05-22T08:27:44.520 に答える
1

試す

$("#availableFbProfiles option:selected").get(0).id
于 2012-05-22T08:29:30.650 に答える