js 生成随机长度数字验证码
// 六位随机数字
Math.floor(Math.random() * (999999 - 100000)) + 100000
// 四位随机数字
Math.floor(Math.random() * (9999 - 1000)) + 1000
// 六位随机数字
Math.floor(Math.random() * (999999 - 100000)) + 100000
// 四位随机数字
Math.floor(Math.random() * (9999 - 1000)) + 1000