摘要: // 此函数用来解决小数计算问题 Number.prototype.toFixedN = function(digits = 0) { return Math.round(this * (10 ** digits)) / (10 ** digits) } const max = 999 for(le 阅读全文
posted @ 2025-12-24 10:35 暗恋桃埖源 阅读(11) 评论(0) 推荐(0)