关于document的输出问题

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

qq_梦与现实的距离_0

2016-11-06 17:09

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Math </title>
<script type="text/javascript">
var num = document.write(Math.random()*10+"<br>");
document.write(Math.round(Math.random()*10)+"<br>");
document.write(Math.round(num));
</script>
</head>
<body>
</body>
</html>

最后一个输出为什么是NaN啊

写回答 关注

3回答

  • S朱雀
    2016-11-06 17:40:30
    已采纳

    document.write()没有返回值。你的 var num = document.write(Math.random()*10+"<br>"); 没有意义!

    qq_梦与现...

    秒懂,中毒了....

    2016-11-06 18:10:46

    共 1 条回复 >

  • 慕粉1859536052
    2017-04-10 16:32:04

    num的值是Math.random()*10, 然后再用round去四舍五入Math.random()*10,不是输出内容

  • 慕桂英6574974
    2016-11-19 15:23:42

    不用这句:document.write(Math.round(Math.random()*10)+"<br>");

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题