checkbox is always “on”

后端 未结 8 1300
抹茶落季
抹茶落季 2021-01-07 16:32

Hy!

When Uploadify send the file to the action, I need to know if the checbox is checked or not, so I did:

    $(\'#uploaded\').uploadify({
        \         


        
8条回答
  •  花落未央
    2021-01-07 17:00

    I just had the same problem and found this solution:

    if($("input[name='yourcheckbox']").is(':checked')) {
       console.log('chb checked');
    } else {
       console.log('chb not checked');
    }
    

提交回复
热议问题