Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dropdownjqueryでリストの選択項目のidを選択したい
dropdown
networkId = $("#availableFbProfiles").selectedIndex.id;
しかし、コンソールのエラーは
Cannot read property 'id' of undefined
これを試して:
networkId = $("#availableFbProfiles option:selected").prop("id");
古いバージョンの jQuery (< 1.7) を使用している場合は、attr()代わりにprop().
attr()
prop()
試す
$("#availableFbProfiles option:selected").get(0).id