document.write输出?

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
浏览 1675回答 3
3回答

李晓健

//后面的;是中文的 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));写代码要细心

Anthonyxd

标点符号,用英文

错过了年华

document.write(Math.floor(3.3)+ "<br>"+"无法显示");   //这是你的代码 document.write(Math.floor(3.3)+ "<br>"+"无法显示");  //这才是正确的分号要在英文输入法下编写代码,仔细看,你自己试试就知道了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript