我有一个下拉列表,我想为其他应用程序制作我的jquery代码。 所以我有一个这个字段的选择器叫做
$('#myList option:first-child').attr('selected', 'selected').
我还有var
字段#myList
,如下所示:
var myDropdown = $('#myList')
。
现在可以做这样的事情:
myDropdown.option:first-child.attr('selected', 'selected')
。
因为那样,我的代码将是可重用的。谢谢!
答案 0 :(得分:0)
像
这样的东西var myDropdown = $('#myList');
$('option:first-child',myDropdown).prop('selected', true);