我似乎无法弄清楚为什么这个选择元素的更改事件会触发两次:
<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”类的唯一地方是在选择元素中。任何帮助,将不胜感激。