Deaktivieren Sie alle anderen Kontrollkästchen, wenn man überprüft wird
$(document).ready(function () {
$('input[type="checkbox"]').click(function () {
if ($(this).prop("checked") == true) {
$('input[type="checkbox"]').not(this).prop('checked', false);
}
});
});
What