我正在尝试通过单击 jquery 来取消选择单选按钮。
通缉行为:
- 如果已选中单击的单选按钮,请取消选中
- 如果未选中单击的单选按钮,请检查
这是我的小提琴:http: //jsfiddle.net/2te28/15/
和我的代码:
$('.table').on('click mousedown', '.radio', function() {
if($(this).attr('id') == $(this).parents('tr').find('.radio:checked').attr('id'))
$(this).removeAttr('checked');
});
我的问题是它总是取消选中我点击的任何内容。
编辑:更正了 id 转录错误
EDIT2:不能同时选择两个单选按钮!