jQuery如何控制checkbox复选框单选

$('#cb_type input[type=checkbox]').click(function () {

    $(this).attr('checked', 'checked').siblings().removeAttr('checked');

});

原文地址:https://www.cnblogs.com/yejiao/p/7324063.html