黄森huang
2016-10-28 08:59
<!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>
发现页面不会出现结果,求大神指点哪里错误
每句代码结尾的分号应该是英文的分号
<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>
这样写比较简便
分号错了,要么删掉要么改成英文分号,不过我们要注意培养编程语言的书写习惯,加上英文分号
均以英文分号结尾
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题