当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Int 函数
The Int function returns the integer part of a specified number.
Int 函数可返回数字的整数部分。
Note: If the number parameter contains Null, Null will be returned.
注意:如果 number 参数包含 Null,则返回 Null
Tip: Also look at the Fix function.
提示:同时参考下Fix函数
Int(number) |
参数 | 描述 |
---|---|
number | Required. A valid numeric expression 必选项。number 参数可以是任意有效的数值表达式 |
document.write(Int(6.83227)) 输出: 6 |
document.write(Int(6.23443)) 输出: 6 |
document.write(Int(-6.13443)) 输出: -7 |
document.write(Int(-6.93443)) 输出: -7 |