首页 > 代码库 > js生成随机数
js生成随机数
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JS随机数测试</title>
</head>
<body>
<script>
document.write(Math.random());//生成一个0~1之间的很多位数的随机小数
</script>
<br>
<script>
document.write(Math.round(Math.random()*9+1));//生成一个1~10(包括1和10)的随机整数
</script>
<br>
<script>
document.write(Math.round(Math.random()*90+10));//生成一个1~100(包括1和100)的随机整数
</script>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JS随机数测试</title>
</head>
<body>
<script>
document.write(Math.random());//生成一个0~1之间的很多位数的随机小数
</script>
<br>
<script>
document.write(Math.round(Math.random()*9+1));//生成一个1~10(包括1和10)的随机整数
</script>
<br>
<script>
document.write(Math.round(Math.random()*90+10));//生成一个1~100(包括1和100)的随机整数
</script>
</body>
</html>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。