この select 要素に対して change イベントが 2 回発生する理由がわかりません。
<form name="contactform">
<label for="requesttype">Request Type:</label>
<select name="requesttype" class="reqtype">
<option value="1" selected>General Comment / Request</option>
<option value="2">No Cost Services Quote</option>
</select>
</form>
この jquery コードを使用する場合:
$(function() {
$(".reqtype").change(function(){
alert($(".reqtype option:selected").val());
})
});
クラス「reqtype」を使用している唯一の場所がselect要素であることを再確認しました。どんな助けでも大歓迎です。