0

对于返回的每个元素

{! followers }

创建一个复选框。我有一个提交按钮,并且“提交时”我想记录哪些复选框被选中和未被选中。

         <apex:repeat value="{! followers }" var="follower">
            $('#attendees').append(
                $('<div>').css('display','inline').append(
                    $('<input>', {type:"checkbox"}).addClass('myCheckBox').attr('id', '{! follower.subscriberId }')
                ).append(
                    $('<label>').text('{! follower.Subscriber.Name }')
                )
            );  
        </apex:repeat>

我如何将这些复选框中的值传递给提交按钮?一旦他们到达提交按钮,我只想提醒()或控制台日志()他们。

可能是这样的?

            if ($('.myCheckBox').is(':checked')){
                alert($('.myCheckBox').attr(???))
            };

或这个?

           if ($('#attendees input').is(':checked')){
                alert($('#attendees input').attr('???'))
            };
4

1 回答 1

2

.map()您可以使用以下函数获取数组内的完整值列表:

var cbValues = $(".myCheckBox").map(function() {
    return this.checked;
}).get();
于 2013-10-17T13:21:12.880 回答