一、使用正则表达式 let str = '1.200' let newStr = str.replace(/\.?0+$/, '') console.log(newStr); // 输出 1.2 未完待续...