我知道@stackoverflow 可能有一些类似的问题,但我还没有找到任何解决我的问题的方法:s
<?php
while($rowVideo = mysql_fetch_array($ResultQueryVideo))
{
?>
<input type="checkbox" name = "checkbox-1[]" class="checkbox" value ="<?php echo $rowVideo['idVideo'] ?>" /> <?php....some code...
这会产生几个复选框,与 idVideo 相同的数字..这就是重点。
现在,在提交之前,我需要确保至少选中了一个复选框。但我没有成功:x
function isCountCheck (helperMsg) {
var chkCnt = 0;
var Frm = document.forms[0];
var dLen = Frm.length - 1;
for (i=0;i<=dLen;i++) {
if(document.form1.["checkbox-1[]"].checked) chkCnt++;
}
if (chkCnt>0) {
return true;
} else {
alert(helperMsg);
return false;
}
}
额外细节:表格名称=“form1”
你能指导我一点吗?谢谢
编辑:
function isCountCheck(){
if($("input[type=checkbox]:checked").length > 0)
{
return true;
}
else
{
alert('Invalid');
return false;
}
}
但仍然无法正常工作..即使显示警报..