$('select')
I want to select the second select above,how to do it?
select
You can do it like this: $('select').eq(1) or $('select:eq(1)')
$('select').eq(1)
$('select:eq(1)')