标签:js
数学对象
属性:Math.PI 圆周率
方法:
Math.ceil();进1(ceil天花板)
Math.floor();去尾
Math.round();四舍五入
Math.random();随机数大于0小于1
Math.max();最大值
Math.min();最小值
取随机值,其中tot为最大值
sub=Math.floor(Math.random()*tot);
本文出自 “Rcid” 博客,请务必保留此出处http://13419255.blog.51cto.com/13409255/1975768
标签:js
原文地址:http://13419255.blog.51cto.com/13409255/1975768