当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsEmpty 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript IsEmpty 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 193 ::
收藏到网摘: n/a

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 参数可以是任意表达式。(通常为变量名)

实例 1

dim x
document.write(IsEmpty(x) & "<br />")
x=10
document.write(IsEmpty(x) & "<br />")
x=Empty
document.write(IsEmpty(x) & "<br />")
x=Null
document.write(IsEmpty(x))
输出:
True
False
True
False

评论 (0) All

登陆 | 还没注册?