亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

VBScript IsNumeric 函數(shù)

定義和用法

IsNumeric 函數(shù)可返回指示指定的表達(dá)式是否可作為數(shù)字來計(jì)算的布爾值。如果作為數(shù)字來計(jì)算,則返回 True ,否則返回 False。

注釋:如果表達(dá)式是日期表達(dá)式,則 IsNumeric 返回 False。

語(yǔ)法

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

實(shí)例

dim x
x=10
document.write(IsNumeric(x))
x=Empty
document.write(IsNumeric(x))
x=Null
document.write(IsNumeric(x))
x="10"
document.write(IsNumeric(x))
x="911 Help"
document.write(IsNumeric(x))

分別輸出:

True
True
False
True
False