/*这段代码就是判断this.checked到底是对哪个起作用
$(".all-table-checkbox").click(function(){
console.log(this.checked);
if(this.checked){
$(".all-table-checkbox").attr("checked",false);
console.log(this.checked);
}else{
$(".all-table-checkbox").attr("checked",true);
console.log(this.checked);
}
});*/
function jsSlideRadio(){
$(".js-slide-radio label input").each(function() {
if ($(this).attr('checked')) {
$(this).parent().addClass("active");
}
});
$(".js-slide-radio label").on('click', function() {
if (!$(this).hasClass('active')) {
$(this).find('input').attr('checked', 'checked');
$(this).addClass('active').siblings().each(function() {
$(this).removeClass('active').find('input').removeAttr('checked');
});
}
});
}