let s =[];
$.each($('#formSearch input'),(m,n)=>{s.push(n)});
//示例获取表单所有 input 下滑线分割的 name 集合。set 去重, concat 平铺。
let res = [...new Set( [].concat(...s.map(m=>m.split('_'))))];
//"", "Co", "Id", "Eq", "OrderNo", "OldNo", "SpecSN", "SupplierName", "SupplierGoodsNo", "Duration", "GrE", "ReceiveTime", "Le", "ReceiveUserName"
05-11 14:59