这样写有没有问题?

来源:7-16 随机数 random()

这你都晓得

2016-08-17 15:16

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Math </title>

<script type="text/javascript">

document.write(Math.round((Math.random())*10))

</script>

</head>

<body>

</body>

</html>

这节没写答案  这样写可以吧?

写回答 关注

3回答

  • 懵逼的我
    2016-10-27 22:40:41

    可以。

    随机数*10,或者随机数四舍五入后再*10都是可以的。

  • Yinsion_Nie
    2016-09-28 17:49:20

    document.write(Math.round(Math.random()*80 + 20));

    Math.random()不加括号,也是可以的。

  • qq_Afterfiveyea_0
    2016-08-17 15:29:50

    可以的

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题