4

我知道@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;
    }
}

但仍然无法正常工作..即使显示警报..

4

3 回答 3

3

主要问题是您没有使用i循环中的索引来引用各个复选框,并且您在 this.之前[有一个语法错误。所以改变:

if(document.form1.["checkbox-1[]"].checked) chkCnt++;

到:

if(document.form1["checkbox-1[]"][i].checked) chkCnt++;

但是您可以按如下方式整理功能:

function isCountCheck(helperMsg) {
    var i, dLen = document.form1["checkbox-1[]"].length;
    // if the length property is undefined there is only one checkbox
    if (typeof dLen === "undefined") {
        if (document.form1["checkbox-1[]"].checked) return true;
    }
    else {
        for (i = 0; i < dLen; i++) {
            if (document.form1["checkbox-1[]"][i].checked) return true;
        }
    }
    alert(helperMsg);
    return false;
}

演示:http: //jsfiddle.net/nnnnnn/ZjK3w/1/

或者只是遍历表单中的所有输入,检查每个输入的类型(和/或名称):

function isCountCheck(helperMsg) {
    var i, len, inputs = document.form1.getElementsByTagName("input");
    for (i = 0, len = inputs.length; i < len; i++) {
        if (inputs[i].type === "checkbox"
            && inputs[i].checked)
            return true;
    }
    alert(helperMsg);
    return false;
}

演示:http: //jsfiddle.net/nnnnnn/ZjK3w/2/

于 2012-08-07T03:43:39.990 回答
2

最简单的解决方案:

var form = document.forms[0]; // your form element (whatever)
var checkedElms = form.querySelectorAll(':checked').length;

不需要 jQuery。支持到 IE8。如果您愿意,可以为旧版浏览器使用 polyfill。

于 2014-03-24T21:20:14.067 回答
0

使用jQuery:

function isCountCheck(helperMsg){
    if($("input[type=checkbox]:checked").length > 0)
        return true;
    alert(helperMsg);
    return false;
}
于 2012-08-07T03:16:33.747 回答