$('#checkBoxes input[type=checkBox]:checked').concat('-');
$('#checkBoxes input[type=checkBox]:checked').map(function() { return $(this).val(); }).get().join('-');
基本上,您将函数应用于返回其值的每个项目.然后将结果组合成一个字符串.