时间:2021-07-01 10:21:17 帮助过:2人阅读
var colorValues = new Array();
$('#image-colors').find('.color-block').each(function(){
if($(this).find('span').eq(0).hasClass('selected')){
colorValues.push($(this).attr('title'));
}
});
var colorString = colorValues.join(',');
alert(colorString);