去除checkbox选择的三种方式

$(this).checked = false;
$(this).removeAttr('checked');
$(this).prop('checked', false);
人生不断地重复着一次一次的问题,把这些问题记录下来,让自己和有需要的人省点时间。
原文地址:https://www.cnblogs.com/wzhw2015/p/15221322.html