如何存储.each()函数的返回值?

时间:2015-05-14 10:21:57

标签: javascript jquery

我通过使用以下功能动态检查chekboxes。

$('input[type="checkbox"]').each(function() {
    $(this).attr('checked', true);   
});

我想将整个选中的复选框存储在字符串中。

1 个答案:

答案 0 :(得分:1)

var ids =''
$('input[type="checkbox"]').each(function() {
    if($(this).attr('checked')=='checked'){
        ids += $(this).attr(id) + ',';
    } 
});

您也可以用逗号分割ID并获取ID数组

var ids = ids.split(',')