1. 匹配一串字符中的数字
<span class="money" doubly-currency="USD">$15.89 USD</span>
var str = $(".money").text(); console.log(Number(str.replace(/[^0-9]/g,"")/100)); // “.”被替代成了空,所以为了保持原值大小,除以100// /[^0-9]/g 全局匹配所有非数字字符
时间: 2024-10-05 23:48:18
1. 匹配一串字符中的数字
<span class="money" doubly-currency="USD">$15.89 USD</span>
var str = $(".money").text(); console.log(Number(str.replace(/[^0-9]/g,"")/100)); // “.”被替代成了空,所以为了保持原值大小,除以100// /[^0-9]/g 全局匹配所有非数字字符