如何在jquery中选择selectedIndex的id

时间:2012-05-22 08:25:39

标签: jquery select indexing

我想在jquery

中选择dropdown列表中所选项目的ID
networkId = $("#availableFbProfiles").selectedIndex.id;

但控制台上的错误是

Cannot read property 'id' of undefined

3 个答案:

答案 0 :(得分:4)

试试这个:

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

如果您使用的是旧版本的jQuery(< 1.7),请使用attr()代替prop()

答案 1 :(得分:1)

尝试

$("#availableFbProfiles option:selected").get(0).id

答案 2 :(得分:0)

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