Check if checkbox is NOT checked on click - jQuery

后端 未结 8 385
心在旅途
心在旅途 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:51

    The answer already posted will work. If you want to use the jQuery :not you can do this:

    if ($(this).is(':not(:checked)'))
    

    or

    if ($(this).attr('checked') == false)
    
    0 讨论(0)
  • 2021-01-30 06:58

    jQuery to check for checked? Really?

    if(!this.checked) {
    

    Don't use a bazooka to do a razor's job.

    0 讨论(0)
提交回复
热议问题