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