読めば分かる。
こうする
これがあったとして
<select name="sample">
<option value="">select</option>
︙
</select>
こうなる
$(function(){
$('select[name="sample"]').on('change',function(){
var targetVal = $('select[name="sample"] option:selected').val();
alert(targetVal);
})
})
コメント