0425jquery操作select实例阅读(6593)条2013/4/25 11:55:21
jq需要操作select一系列内容,如添加select change事件,获取select的Text,获取Select选择的Value ,获取Select选择的索引值,获取Select最大的索引值等等。jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find("option:selected").text(); //获...阅读全文
Taget:jq select 操作