摘要: // 封装随机数 function getRandom(max, min) { return Math.floor(Math.random() * (max - min + 1)) + min; } // console.log(getRandom(1, 100)); // 随机获取验证码 func 阅读全文
posted @ 2021-06-16 15:00 唯爱小喵 阅读(31) 评论(0) 推荐(0)