我想问一下random()方法出来的随机数是小数点后一位还是几位啊??
document.write(Math.round(Math.random()*10));//这个值是1~10之间的随机小数再*10就是10~100之间的随机小数。
document.write(Math.round((Math.random())*10));//外面加一个括号,就可以取整数了
输出出来控制台有16位
document.write(Math.random()*10+"<br>"); //0-10随机数 document.write(Math.round(Math.random()*10)); //0-10随机数四舍五入取整