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

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

VBScript CBool 函数


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

The CBool function converts an expression to type Boolean.
CBool 函数可返回表达式,此表达式已转换为 Boolean 子类型的 Variant

语法

CBool(expression)

参数 描述
expression Required. Any valid expression. A nonzero value returns True, zero returns False. A run-time error occurs if the expression can not be interpreted as a numeric value
必选项。expression 是任意有效的表达式。如果 expression 是零,则返回 False;否则返回 True。如果 expression 不能解释为数值,则将发生运行时错误。

实例 1

dim a,b
a=5
b=10
document.write(CBool(a) & "<br />")
document.write(CBool(b))
输出:
True
True

评论 (0) All

登陆 | 还没注册?