欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

VBScript IsNull 函數(shù)

定義和用法

IsNull 函數(shù)可返回指示指定表達(dá)式是否無效數(shù)據(jù)的布爾值。如果表達(dá)式是 Null,則返回 True,否則返回 False。

語法

IsNull(expression)
參數(shù) 描述
expression 必需的。表達(dá)式。

實(shí)例

dim x
document.write(IsNull(x))
x=10
document.write(IsNull(x))
x=Empty
document.write(IsNull(x))
x=Null
document.write(IsNull(x))

分別輸出:

False
False
False
True