// 字符串中提取数字function getNum(text){var value = text.replace(/[^0-9]/ig,""); return parseFloat(value);}
本文共 149 字,大约阅读时间需要 1 分钟。
// 字符串中提取数字function getNum(text){var value = text.replace(/[^0-9]/ig,""); return parseFloat(value);}
转载于:https://my.oschina.net/Cubicluo/blog/839727