0202JQ操作select项 阅读(7480)条2015/2/2 14:48:17
jQuery获取Select元素,并选择的Text和Value:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val(); //获取Select选择的Value4. var checkIndex=$("#select_id ").get(0).sel...阅读全文
Taget:jq select