jQuery 移除单选框的选中状态

来源:互联网 发布:手机查看网页源码 编辑:程序博客网 时间:2024/05/21 09:02
function selecto(){
$('input[name="aa"]').each(function() {
    $(this).removeAttr("checked");
}); 
}

0 0