JavaScript中用于生成随机数的Math.random()方法
此方法返回0(含)和1(不包括)之间的随机数
语法
Math.random();
下面是参数的详细信息:
- NA
返回值:
- 返回0(含)和1(不包括)之间的随机数
例子:
<html>
<head>
<title>JavaScriptMathrandom()Method</title>
</head>
<body>
<scripttype="text/javascript">
varvalue=Math.random();
document.write("FirstTestValue:"+value);
varvalue=Math.random();
document.write("<br/>SecondTestValue:"+value);
varvalue=Math.random();
document.write("<br/>ThirdTestValue:"+value);
varvalue=Math.random();
document.write("<br/>FourthTestValue:"+value);
</script>
</body>
</html>
这将产生以下结果:
FirstTestValue:0.28182050319352636 SecondTestValue:0.6375786089661319 ThirdTestValue:0.6780129774072902 FourthTestValue:0.7310958163154001