Jquery 陣列與字串之間的轉換

OldBoy~發表於2014-10-06

 

 

 var auth_list = [];
        $("input[name='auth_list']:checkbox").each(function () {
            if ($(this).attr("checked")) {
                auth_list.push($(this).attr('value') );
            }
        });
        var str = auth_list.join(',');

console.log(str);

//4,3,2,1

 

相關文章