Only one checkbox checked at a time in javascript

前端 未结 2 1945
说谎
说谎 2021-01-26 05:41

I have 3 checkbox, for which I want only 1 checkbox to be checked at a time. below is my fiddle for the html

JS fiddle

I want this to b

2条回答
  •  北恋
    北恋 (楼主)
    2021-01-26 06:05

    How about this - fiddle:

    
    
    
    
    
    $('input.chk').on('change', function() {
        $('input.chk').not(this).prop('checked', false);  
    });
    

    Edit: for second part of your question to un-check other checkboxes when selecting parent checkbox see this fiddle - (as per chat) :

    if (!cb.checked) { 
    $('#trchkOptions input[type=checkbox]').attr('checked', false); 
    }
    

提交回复
热议问题