2

dropdown我想在 jquery中选择列表中所选项目的 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 回答
0
networkId = $("#availableFbProfiles option:selected").prop("");
于 2013-05-07T06:59:38.853 回答