VBScript 函数参考手册
IsObject 函数可返回指示是否指定的表达式是一个 automation 对象的布尔值。如果表达式是对象,则返回 True 。否则返回 False。
IsObject(expression)
dim x set x=me document.write(IsObject(x))
输出:
True
dim x x="me" document.write(IsObject(x))
False
Search: