当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsEmpty 函数
The IsEmpty function returns a Boolean value that indicates whether a specified variable has been initialized or not. It returns true if the variable is uninitialized; otherwise, it returns False.
IsEmpty 函数可返回 Boolean 值指明变量是否已初始化。
IsEmpty(expression) |
参数 | 描述 |
---|---|
expression | Required. An expression (most often a variable name) 必选项。expression 参数可以是任意表达式。(通常为变量名) |
dim x 输出: True |