使用.find定位特定类

时间:2013-04-12 09:00:03

标签: jquery

作为这个问题的延续 - Find checkboxes that are checked with a specific class

是否可以对此jquery执行相同的操作 - 我只想使用“正确”类专门定位复选框输入?

jQuery(function($) {
$(document).ready(function () {
    $("input[type=checkbox]").click(function (e) {
        if ($(e.currentTarget).closest("div.question").length > 0) {
            toggleInputs($(e.currentTarget).closest("div.question")[0]);        
        }
    });
});

function toggleInputs(questionElement) {
    if ($(questionElement).data('max-answers') == undefined) {
        return true;
    } else {
        maxAnswers = parseInt($(questionElement).data('max-answers'), 10); 
        if ($(questionElement).find(":checked").length >= maxAnswers) {
            $(questionElement).find(":not(:checked)").attr("disabled", true);
        } else {
            $(questionElement).find("input[type=checkbox]").attr("disabled", false);
        }
    }
}
});

2 个答案:

答案 0 :(得分:2)

试试这个:

$("input[type=checkbox].correct").click(function (e) {
        if ($(e.currentTarget).closest("div.question").length > 0) {
            toggleInputs($(e.currentTarget).closest("div.question")[0]);        
        }
    });

答案 1 :(得分:0)

var $checkboxes = $('input.correct:checkbox");