DylanZ

//拼接产品字符串
var productArray = new Array();
$.each($("#fmeatask-subSystem").find("option:selected"), function(index, obj) {
productArray.push($(obj).text());
});
$.each($("#fmeatask-assembly").find("option:selected"), function(index, obj) {
productArray.push($(obj).text());
});

var productStr=productArray.join(",");

分类:

技术点:

相关文章:

  • 2021-10-30
  • 2021-12-06
  • 2021-09-05
  • 2021-11-29
  • 2021-11-29
  • 2021-11-27
  • 2021-11-17
猜你喜欢
  • 2021-11-29
  • 2021-12-01
  • 2021-12-01
  • 2021-12-01
  • 2021-11-29
  • 2021-11-29
  • 2021-11-27
相关资源
相似解决方案