标签:highlight div class ceil blog pre htm floor rand
//生成[min,max)的值 parseInt var RandomNum = parseInt(Math.random() * (21 - 15) + 15); // 生成[min,max]的值 Math.round 四舍五入 var RandomNum = Math.round(Math.random() * (21 - 15) + 15); //生成(min,max]的值 Math.ceil() 向上取整 var RandomNum = Math.ceil(Math.random() * (21 - 15) + 15); //生成[min,max)的值 Math.floor() 向下取整 var RandomNum = Math.floor(Math.random() * (21 - 15) + 15);
标签:highlight div class ceil blog pre htm floor rand
原文地址:http://www.cnblogs.com/loewe0202/p/6515983.html