codecamp

VBScript IsEmpty 函数

VBScript IsEmpty 函数将返回一个 Boolean 值。


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

IsEmpty 函数返回一个布尔值,指示指定的变量是否已经初始化。如果变量未初始化则返回 True,否则返回 False。

语法

IsEmpty(expression)

参数 描述
expression 必需。一个表达式(通常是一个变量名)。

实例

实例

<script type="text/vbscript">
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))
</script>

以上实例输出结果:

True
False
True
False

尝试一下 »

VBScript 参考手册完整的 VBScript 参考手册
VBScript String 函数
VBScript StrComp 函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

VB 函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }