選択ボックスがあり、変更時に選択されたオプションを選択しようとしています。前のスクリプトでわかるように、以前は要素を再度呼び出していましたが、要素の ID 名を再利用する代わりに、選択しようとしまし$(this)
たが、それを機能させる方法がわかりません
前
$('#maptypecontrol').change(function(){
maptypecontrolval = $('#maptypecontrol>option:selected').val();
});
試したコード(失敗)
$('#maptypecontrol').change(function(){
maptypecontrolval = $(this+'>option:selected').val();
});