时间:2021-07-01 10:21:17 帮助过:7人阅读
直接这样可以吗 substr("¥2499.00",3);
("¥2,499,999.00").replace("¥","").replace(/,/g,"");
("¥499,999.00").replace(/[^\d\.]/g,"");
"¥2,499.00".match(/¥([\d,]*?\.00)/)[1]
//2499.00
"¥2,99.00".match(/¥([\d,]*?\.00)/)[1]
//299
var str='¥2,499.00';
str.replace(/[¥,]/g,''); // => 2499.00
var str = '$2,499.00';
str.match(/[\d.]/g).join('');
如果字符串里面还有其他的字符,这样就可以了