我使用单选按钮,需要像这样听取更改事件:
<input type='radio' name='test' value='1' checked /> radio1
<input type='radio' name='test' value='2'/> radio2
....
<button type='reset' /> Reset </button >
并且在js:
$('.disp_method input[type=radio]').each(function () {
$(this).on('change', function () {
if($(this).val() == 1) {
alert("change to 1")
} else if ($(this).val() == 2) {
alert('change to 2')
}
})
})
当我点击按钮时,上面的js功能正常,
但是当我点击radio2然后点击重置按钮时,收音机可以重置为原始状态(选择radio1),但上面的事件听不起作用,似乎在点击重置时听不到change
事件
请告诉我有什么不对?
提前致谢