If statements for Checkboxes

前端 未结 6 1108
刺人心
刺人心 2021-02-18 23:43

I wanted to know how to write if statements to see if one or another check box is checked or not.

I have two check boxes. I wanted it to check to see if checkbox 1 is c

6条回答
  •  渐次进展
    2021-02-19 00:12

    I simplification for Science_Fiction's answer I think is to use the exclusive or function so you can just have:

    if(checkbox1.checked ^ checkbox2.checked)
    {
    //do stuff
    }
    

    That is assuming you want to do the same thing for both situations.

提交回复
热议问题