VBScript 函数参考手册
CBool 函数可把表达式转换为布尔类型。
CBool(expression)
dim a,b a=5 b=10 document.write(CBool(a)) document.write(CBool(b))
输出分别是:
True True
Search: