摘要: //从字符串中获取数字 public static String getNum(String str) { String dest = ""; if (str != null) { dest = str.replaceAll("[^0-9]",""); } return dest; } //从字符串 阅读全文
posted @ 2021-05-17 14:56 喜欢22度的晴天 阅读(167) 评论(0) 推荐(0)
摘要: traditional: true, var ids=[]; var sendQtys=[]; $(list).each(function(){ var li=this; ids.push(li.cuttingOperationId); sendQtys.push(li.sendQty); }); 阅读全文
posted @ 2021-05-17 11:21 喜欢22度的晴天 阅读(238) 评论(0) 推荐(0)