问答详情
源自:7-16 随机数 random()

这么写对吗?

<!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>


提问者:qq_SpeaklDomuch_0 2016-04-23 17:50

个回答

  • _Capricornna
    2016-07-15 16:40:11

    运行没有问题,但是这么写的话random()随机数无法显示,两个数都显示出来会比较直观

  • 仁太
    2016-04-28 09:26:35

    document.write(Math.round(Math.random()*10)+"</br>");   

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

    两种写法都能实现 就是看的清晰问题了

  • 慕粉3193552
    2016-04-27 09:03:16

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

  • 小阏呆
    2016-04-26 22:49:10

    你少写了括号, (Math.random())*10

  • yyww
    2016-04-23 17:58:51

    语法对着