英[flɔ:(r)] US[flɔr, flor]
n. 床; 地面、床; 底; 議会席
vt. 床; 敗北、ノックダウン
三人称単数:floors 複数形:floors 現在分詞:flooring 過去形:floored 過去分詞:floored
javascript floor()方法 構文
関数: 数値を切り捨てます。
#構文: Math.floor(x)
パラメータ: #xx 必須。任意の数値または式。
戻り値:x 以下で、x に最も近い整数。
説明:floor() メソッドは切り捨て計算を実行し、関数パラメーター以下の最も近い整数を返します。 [インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示しますjavascript floor()方法 例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script type="text/javascript">
//在不同的数字上使用 floor() 方法
document.write(Math.floor(0.60) + "<br />")
document.write(Math.floor(0.40) + "<br />")
document.write(Math.floor(5) + "<br />")
document.write(Math.floor(5.1) + "<br />")
document.write(Math.floor(-5.1) + "<br />")
document.write(Math.floor(-5.9))
</script>
</body>
</html>
インスタンスの実行 »