欢迎您 本站地址:  

VBScript VarType 函数


VBScript 参考手册 完整的 VBScript 参考手册

VarType 函数返回指示指定变量的子类型的值。

VarType 函数返回下面的值:

注意:假如变量是数组,则 VarType() 会返回 8192 + VarType(array_element)。举例:整数数组的 VarType() 会返回 8192 + 2 = 8194。

语法

VarType(varname)

参数 描述
varname 必需。变量的名称。

实例

实例

<script type="text/vbscript">

x="Hello World!"
document.write(VarType(x) & "<br />")
x=4
document.write(VarType(x) & "<br />")
x=4.675
document.write(VarType(x) & "<br />")
x=Null
document.write(VarType(x) & "<br />")
x=Empty
document.write(VarType(x) & "<br />")
x=True
document.write(VarType(x))

</script>

以上实例输出结果:

8
2
5
1
0
11

尝试一下 >

VBScript 参考手册 完整的 VBScript 参考手册
小库提示

扫描下方二维码,访问手机版。