要么(普通js)
this.checked = false;
或(jQuery)
$(this).prop('checked', false);// Note that the pre-jQuery 1.6 idiom was// $(this).attr('checked', false);
要么(普通js)
this.checked = false;
或(jQuery)
$(this).prop('checked', false);// Note that the pre-jQuery 1.6 idiom was// $(this).attr('checked', false);