如何检测单选按钮何时被选中?
HTML:
<label><input type="radio" name="test">One</label>
<label><input type="radio" name="test">Two</label>
每当用户从我的单选按钮中选择一个选项时,我都想执行某个功能
我试过类似的东西:
$("input:radio").on("change", function(){
if($(this).is(':checked')) {
$(this).attr('checked', false)
// do some more...
}
});
演示:http: //jsfiddle.net/A5EzU/
正如小提琴上显示的“清除”调试语句,一旦点击它看起来就像它一直被点击。