JQuery

varcheckText=$("#select_id").find("option:selected").text();

varcheckIndex=$("#select_id").get(0).selectedIndex;//获取Select选择的索引值。对于链式里面的get(0)方法,获得的是dom对象。

varmaxIndex=$("#select_idoption:last").attr("index");//获取Select最大的索引值

$("#select_id").get(0).selectedIndex=1;//设置Select索引值为1的项选中

2.$("#select_id").val(4);//设置Select的Value值为4的项选中

3.$("#select_idoption[text='jQuery']").attr("selected",true);//设置Select的Text值为jQuery的项选中

相关推荐