$(" #select_id").change(function(){//code...}); //為Select新增事件,當選擇其中一項時觸發 var checkText=$("#select_id").find( "option:selected").text(); //取得Select選擇的Text var checkValue=$("#select_id").val(); //取得Select選擇的Value var checkIndex=$ ("#select_id ").get(0).selectedIndex; //取得Select選擇的索引值 var maxIndex=$("#select_id option:last").attr("index"); //取得Select最大的索引值