jqueryjs判断复选框是否选中
Posted loveyunk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqueryjs判断复选框是否选中相关的知识,希望对你有一定的参考价值。
js:
if (document.getElementById("checkboxID").checked) {
alert("checkobx is checked");
}
jquery:
if ($("#checkboxID").prop("checked")) {
alert("checkbox is checked");
}
或
if ($("#checkboxID").is(":checked")) {
alert("checkbox is checked");
}
以上是关于jqueryjs判断复选框是否选中的主要内容,如果未能解决你的问题,请参考以下文章