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

大神帮我看下最后一个为什么不显示啊 我复制到dw里也是不显示最后一个的

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


提问者:苏慕然 2015-11-05 18:04

个回答

  • 李晓健
    2015-11-05 18:41:42
    已采纳

    其实用一个智能的编辑器也很重要,至少有语法错误可以直接提示出来。

  • 苏慕然
    2015-11-05 18:10:48

    自己检查了一遍发现了。。。换行那个写错了