dropdown
我想在 jquery中选择列表中所选项目的 id
networkId = $("#availableFbProfiles").selectedIndex.id;
但控制台上的错误是
Cannot read property 'id' of undefined
尝试这个:
networkId = $("#availableFbProfiles option:selected").prop("id");
如果您使用的是旧版本的 jQuery (< 1.7) ,请attr()
使用prop()
.
尝试
$("#availableFbProfiles option:selected").get(0).id
networkId = $("#availableFbProfiles option:selected").prop("");