对于返回的每个元素
{! 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('???'))
};