检查提交时是否检查所有复选框
这个问题在这里已经有了答案:
您可以在选择器中使用:checked
修饰符。
if ($("#boom :checkbox:checked").length == 0) {
alert("You have to check at least one box");
}
链接地址: http://www.djcxy.com/p/55981.html
这个问题在这里已经有了答案:
您可以在选择器中使用:checked
修饰符。
if ($("#boom :checkbox:checked").length == 0) {
alert("You have to check at least one box");
}
链接地址: http://www.djcxy.com/p/55981.html