当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Oct 函数
The Oct function returns a string that represents the octal value of a specified number.
Oct 函数可返回表示数字八进制值的字符串
Note: If number is not already a whole number, it is rounded to the nearest whole number before being evaluated.
注意:如果 number 参数不是整数,则在进行运算前,将其四舍五入到最接近的整数。
Oct(number) |
参数 | 描述 |
---|---|
number | Required. Any valid expression 必选项。number 参数是任意有效的表达式 If number is:
|
document.write(Oct(3) & "<br />") 输出: 3 |