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-11-29
  • 2021-11-29
  • 2021-11-21
  • 2021-11-13
  • 2022-12-23
  • 2022-02-25
  • 2021-12-06
猜你喜欢
  • 2021-08-11
  • 2022-12-23
  • 2021-11-21
  • 2021-12-05
  • 2021-11-29
  • 2021-10-24
  • 2021-12-09
相关资源
相似解决方案