<select name="" id="dsb">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
//使用后代选择器选中所有的option属性 使用each进行遍历(相当于封装好的for或for in),返回的值是js对象,使用jQuery必须封装才能使用 index元素下标 els元素集合
$("select option").each(function(index,els){
if(index == 2){
document.write($(els).text());
}
});
最后结果显示 3