1.
/*----------------------------------js生成随机四位数用户删除---------------------*/function mathRand() { var num=""; for(var i=0;i<4;i++) { num+=Math.floor(Math.random()*10); } return num;}
2.Math.floor() 方法
floor() 方法可对一个数进行下舍入。
例如:
输出:0055-6-6
3.Math.random()方法
---- random() 方法可返回介于 0 ~ 1 之间的一个随机数。
在本例中,我们将取得介于 0 到 1 之间的一个随机数:输出:0.6627135668146795