s = "颜色:红色,绿色\n容量:50ml,100ml,160ml\n产品产区:上海,广东";a = s.split(/[\r\n]+/);
for(i=0; i<a.length; i++) {
  a[i] = a[i].split(/[:,]/).slice(1);
}
r = [];
b = a.shift();
for(i=0; i<b.length; i++) r.push([b[i]]);
p = 0;
while(b = a.shift()) {;
  len = r.length;
  for(; p<len; p++) {
    for(i=0; i<b.length; i++) {
      t = r[p];
      r.push(r[p].concat(b[i]));
    }
  }
}
r = r.slice(len);
for(i=0; i<r.length; i++) {
  document.write(r[i].join(',') + '<br>');
}
红色,50ml,上海
红色,50ml,广东
红色,100ml,上海
红色,100ml,广东
红色,160ml,上海
红色,160ml,广东
绿色,50ml,上海
绿色,50ml,广东
绿色,100ml,上海
绿色,100ml,广东
绿色,160ml,上海
绿色,160ml,广东