0

我需要能够判断是否选中了复选框以进行一些基本验证。问题:我无权访问生成它的 PHP。没有添加类,或者大多数表单都具有基本的checked=checked。定位选中框的最简单方法是什么?

http://www.inpresence.in/event-registration?ee=4

编辑:吓坏了!这是代码,我只需要针对选中的框,其他一切都在工作。jquery 的 :checked 方法在复选框中使用了checked=checked,但该复选框不存在。

   $(document).ready(function(){
    //when the submit button is clicked...
    $("input.btn_event_form_submit").click(function(){

    //find the value of the drop down with one evening or four evenings
    var priceOption = $("#price_option-4").val();

    //match a string ending with "one evening" as the first numbers will be randomly generated by php
    var oneEvening = /^\d{2}\|One Evening$/.test(priceOption);

    //match a string ending with "four evenings" as the first numbers will be randomly generated by php
    var fourEvenings = /^\d{2}\|Four Evenings$/.test(priceOption);

    //HOW DO I GET THE CHECKED BOXES?!
    var checkedBoxCount = $('#dates-1351733097 .valid').is(':checked').length;

    //if one evening is selected make sure the checked boxes count does in fact equal one
    if(oneEvening && checkedBoxCount != 1){
        //if it doesn't alert the user and return false
        alert('You must select one date');
        return false;
    }

    //if one evening isn't selected, four is. make sure the count does indeed in 4
    else if (fourEvenings && checkedBoxCount != 4){
        //if it doesnt alert the user and return to the form
        alert('You must select four dates');
        return false;
    }

    //else, everything checks out!
    else {
        return;
    }

});
});
4

4 回答 4

2

您是否尝试过使用 jquery 来解决此问题? http://jquery-howto.blogspot.co.uk/2008/12/how-to-check-if-checkbox-is-checked.html

$('#edit-checkbox-id').is(':checked'); 
于 2012-11-05T17:59:45.427 回答
2

使用此 JavaScript 代码,您可以检查是否选中了复选框:

var isChecked = document.getElementById("my-checkbox").checked;

或者使用 jQuery:

var isChecked = $('#my-checkbox').is(':checked');

编辑:试试这个并告诉我它是否有效:

var checkedBoxCount = $('#dates-1351733097 .valid:checked').length;
于 2012-11-05T18:02:14.490 回答
0

使用 jquery:checked选择器。http://api.jquery.com/checked-selector/

于 2012-11-05T18:00:08.897 回答
0

这将为您提供所需的 javascript 布尔值:

document.getElementById("Nov.12-4_1").checked

您可以查看源代码并找到元素以查看它们拥有的任何 id。

其他答案:OP 没有指定他想要一个 jquery 答案。如果他到目前为止还没有使用 jquery 做任何事情。我认为仅仅为此添加它会有点矫枉过正。

于 2012-11-05T18:00:41.533 回答