Get check box value if checked

后端 未结 3 1549
执念已碎
执念已碎 2021-01-16 04:21

I\'m building a form using HTML with JQuery mobile so that the form can be used on mobile devices.

I have the form exporting to CSV via email. However the write to t

3条回答
  •  情书的邮戳
    2021-01-16 04:55

    Have a quick look at this answer for checking if a checkbox is checked.

    How to check whether a checkbox is checked in jQuery?

    But basically you want to do something like below to check its value:

    if ($("#element").is(":checked")) {
      alert("I'm checked");
    }
    

提交回复
热议问题