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

为什么我的显示不了呢?


<!DOCTYPE html>

<html>

<head>

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

<title>Math </title>

<script type="text/javascript">

function math(x){

    docment.write(Math.floor(x)+"<br/>");

    }

    math(3.3);

    math(-0.1);

    math(-9.9);

    math(9.8);


/*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(9.8));*/

</script>

</head>

<body>

</body>

</html>


提问者:光芒的心 2015-10-06 21:04

个回答

  • Y_du
    2015-10-06 22:39:07
    已采纳

    document.write(Math.floor(x)+"<br/>");