标签:mat parse 方法 dom 随机数 random 常用 math rand
1、随机数
90 -100之间的随机数:parseInt(Math.random() * (100 - 90) + 90)
10-20之间的随机数:parseInt(Math.random() * (20 - 10) + 10)
1-10之间的随机数:Math.floor(Math.random()*10+1)
0-9之间的随机数:Math.floor(Math.random()*10)
标签:mat parse 方法 dom 随机数 random 常用 math rand
原文地址:https://www.cnblogs.com/panyujun/p/11008856.html