把我的头撞到墙上.. 谷歌搜索并检查了以前的 q 在这里.. 找不到答案.. 使用 jquery 1.9.1
非常简单的问题...选择下拉列表,希望我的功能在用户更改下拉列表时触发..问题是。什么都没有发生..没有错误.. func不会触发
$("select.radStatus").change(function() {
// alert('Value change to ' + $(this).attr('value'));
$.ajax({
type: "GET",
url: "ajax_me.php",
data: "officeLocName=" + $(this).val(),
success: function(msg){
$('#signInResult').html('<img src="img/checkmark.png" />');
}
});
});
HTML是:
<select id="radStatus" name="officeLocName">
<option value="1">choice 1</option>
<option value="2">choice 2</option>
<option value="3">choice 3</option>
</select>
我尝试缝制一个新选项...事件不触发...没有任何反应..萤火虫中没有错误
谢谢
更新:谢谢它有效!