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>