问答详情
源自:7-14 向下取整floor()

document.write

<!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.floor(3.3)+ "<br>"+"无法显示");

document.write(Math.floor(-0.1)+ "<br>");

document.write(Math.floor(-9.9)+ "<br>");

document.write(Math.floor(8.9));

</script>

</head>

<body>

</body>

</html>

发现页面不会出现结果,求大神指点哪里错误

提问者:黄森huang 2016-10-28 08:59

个回答

  • 慕村9508323
    2016-10-28 09:16:13
    已采纳

    每句代码结尾的分号应该是英文的分号

  • qq_轮滑到老_04284587
    2017-05-28 11:02:44

    <script type="text/javascript">

    var b = [3.3,-0.1,-9.9,8.9];

    for(var i=0;i<b.length;i++){

        document.write(Math.floor(b[i])+"<br />")

    }


    </script>


    这样写比较简便

  • 慕容3661998
    2016-10-28 09:38:36

    分号错了,要么删掉要么改成英文分号,不过我们要注意培养编程语言的书写习惯,加上英文分号

  • 黄森huang
    2016-10-28 09:36:40

    均以英文分号结尾