标签:
Math无需创建,可以直接使用其属性和方法。
Math对象属性
Math方法
document.write(Math.ceil(3.4));//结果为:4
若是返回1~10之间的随机数
document.write(Math.random()*10);
使用random ()方法和round(),计算不大于10的整数: document.write(Math.round(Math.random()*10))
标签:
原文地址:http://www.cnblogs.com/Thelma/p/5773865.html