首页 > 代码库 > JavaScript字符串技巧

JavaScript字符串技巧

1.使用逗号分割金额
String.prototype.strReverse = function() {    return this.split(‘‘).reverse().join(‘‘);}function amountSplit(amount) {    return amount.toString().strReverse().replace( /(\d+\.)?(\d{1,3})/g, ‘$1$2,‘ ).strReverse().substring( 1 );}console.log( amountSplit( 120000.12 ) ); // 120,000.12console.log( amountSplit( 1285000) ); // 1,285,000

 

2.将小数转换为百分比
Math.round(num1 / num2 * 10000) / 100.00 + ‘%‘

 

JavaScript字符串技巧