实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="demo">Click the button to round the number 1.6 downward to it's nearest integer.</p>
6
7
<button onclick="myFunction()">Try it</button>
8
9
<script>
10
function myFunction()
11
{
12
var a=Math.floor(0.60);
13
var b=Math.floor(0.40);
14
var c=Math.floor(5);
15
var d=Math.floor(5.1);
16
var e=Math.floor(-5.1);
17
var f=Math.floor(-5.9);
18
19
var x=document.getElementById("demo");
20
x.innerHTML=a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e + "<br>" + f; 
21
}
22
</script>
23
24
</body>
25
</html>