JavaScript – Math random方法
说明
该方法返回介于0(包括)和1(不包括)之间的随机数。
语法
其语法如下 –
Math.random();
返回值
返回介于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.14737974746292393
Second Test Value : 0.8416569250401384
Third Test Value : 0.8790248724613339
Fourth Test Value : 0.252843316083043