Check if checkbox is NOT checked on click - jQuery

后端 未结 8 383
心在旅途
心在旅途 2021-01-30 06:02

I want to check if a checkbox just got unchecked, when a user clicks on it. The reason for this is because i want to do a validation when a user unchecks a checkbox. Because atl

8条回答
  •  有刺的猬
    2021-01-30 06:50

    The Answer already posted .But We can use the jquery in this way also

    demo

    $(function(){
        $('#check1').click(function() {
            if($('#check1').attr('checked'))
                alert('checked');
            else
                alert('unchecked');
        });
    
        $('#check2').click(function() {
            if(!$('#check2').attr('checked'))
                alert('unchecked');
            else
                alert('checked');
        });
    });
    

提交回复
热议问题