欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript中用于生成随机数的Math.random()方法

程序员文章站 2023-01-07 13:12:22
 此方法返回0(含)和1(不包括)之间的随机数 语法 math.random() ; 下面是参数的详细信息:  &n...

 此方法返回0(含)和1(不包括)之间的随机数
语法

math.random() ;

下面是参数的详细信息:

  •     na

返回值:

  • 返回0(含)和1(不包括)之间的随机数

例子:

<html>
<head>
<title>javascript math random() method</title>
</head>
<body>
<script type="text/javascript">

var value = math.random( );
document.write("first test value : " + value ); 
 
var value = math.random( );
document.write("<br />second test value : " + value ); 

var value = math.random( );
document.write("<br />third test value : " + value ); 

var value = math.random( );
document.write("<br />fourth test value : " + value ); 
</script>
</body>
</html>

这将产生以下结果:

first test value : 0.28182050319352636
second test value : 0.6375786089661319
third test value : 0.6780129774072902
fourth test value : 0.7310958163154001