JQuery 操作 radio 被坑一例

.removeAttr('checked');  

.prop('checked',false);   

.prop('checked',true);

.attr("checked",true);

.attr("checked",true);

有本质区别,上边的方法效果理想。

原文地址:https://www.cnblogs.com/rgqancy/p/5017357.html