我有一个复选框,我想检查按钮点击事件是否已经检查过。我正在使用ASP MVC 5并尝试了几种方法,但没有任何方法可以帮助我。这是代码:
$("#btnPrintVoucher").click(function () {
if ($('#chkPrintSlip').prop('checked')) {
alert("chked");
}
else {
alert($('#chkPrintSlip').val());
}
});
答案 0 :(得分:1)
if ($('#chkPrintSlip').is(':checked')) {
您可以使用is(":checked")
来检测是否选中了复选框。
答案 1 :(得分:1)
使用Vanilla JS:
if (document.getElementById('chkPrintSlip').checked)
答案 2 :(得分:0)
试试这个:
$("#btnPrintVoucher").click(function () {
if ($('#chkPrintSlip').is(':checked')) {
alert("chked");
}
else {
alert($('#chkPrintSlip').val());
}
});