怎样获取select下第一个option

2024-12-01 22:36:50
推荐回答(3个)
回答1:

$('select').children('option').first().hide();
$('select').children('option').eq(1).attr("selected", "selected");

回答2:

http://blog.csdn.net/you23hai45/article/details/37110171

回答3:

不知道