JS-工具类2018-12-19 本文已影响0人 杂选说 随机数 Math.random()用来生成[0,1)之间的随机小数。 生成特定范围内的随机数据区间 Math.floor(Math.random() * (max - min +1)) + min 正则表达式