所属分类:输入-选择框
单选
$('select[name=1]').find("option:selected").text() $('select[name=1]').find("option:selected").val()
多选
$('select[name=1]').find("option:selected").each(function(){ val+=val==''?$(this).text():', '+$(this).text() });