实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
    <title>Math Object Random Example 1</title>
5
    <script type="text/javascript">
6
        var num = Math.floor(Math.random() * 10 + 1);
7
        alert(num);    //a number between 1 and 10
8
        
9
    </script>
10
</head>
11
<body>
12
13
</body>
14
</html>