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.
我正在尝试通过 jquery 在我的下拉列表中选择某个值..我试过这个..
$("#membershiptype").val(1).selected;
它不起作用..我显然在这里不知所措,因为我对 jquery 缺乏经验。
要按索引选择选项,您可以这样做:
$("#membershiptype").get(0).selectedIndex=1;
示范
要按值(选项的内容)选择选项,您可以使用:
$("#membershiptype").val('B');
您可以将 val() 分配给要选择的选项值。
$('#membershiptype').val(valueToBeSelected);