$('select')
I want to开发者_如何学编程 select the second select
above,how to do it?
You can do it like this: $('select').eq(1)
or $('select:eq(1)')
$('select')
I want to开发者_如何学编程 select the second select
above,how to do it?
You can do it like this: $('select').eq(1)
or $('select:eq(1)')
精彩评论