JQuery

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

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

var maxIndex=$("#select_id option:last").attr("index");  //获取Select最大的索引值

$("#select_id ").get(0).selectedIndex=1;  //设置Select索引值为1的项选中
2. $("#select_id ").val(4);   // 设置Select的Value值为4的项选中
3. $("#select_id option[text='jQuery']").attr("selected", true);   //设置Select的Text值为jQuery的项选中

你可能感兴趣的:(jquery)