jQuery中典型的方法:javascript
// get OPTION elements for which `selected` property is true $('option').not(function(){ return !this.selected })
或者推薦java
$("#ID").val() //獲取選中的value git
$("#ID option").eq($("#ID").attr("selectedIndex")).text() //獲取選中的文本值 github