如果你要获取value值$("#the_select option:first").val();
要获取文本值$("#the_select option:first").text();
value值:$("select#名字>option:first").val()
文本内容:$("select#名字>option:first").text()
如果你要获取value值$("#the_select option:first").val();
或者$("#the_select").eq(0).val();
$('#select1 option:eq(0)')就获得了第一个option至于取值什么的看你的