.removeAttr('checked');
.prop('checked',false);
.prop('checked',true);
與
.attr("checked",true);
.attr("checked",true);
有本質區別,上邊的方法效果理想。
.removeAttr('checked');
.prop('checked',false);
.prop('checked',true);
與
.attr("checked",true);
.attr("checked",true);
有本質區別,上邊的方法效果理想。