VBScript CBool 函数
最后更新于:2022-03-26 22:41:07
VBScript CBool 函数
CBool 函数把表达式转换为布尔(Boolean)类型。
表达式必须是一个数值。
语法
CBool(expression)
参数 | 描述 |
---|---|
expression | 必需。任何有效的表达式。非零的值返回 True,零返回 False。如果表达式不能解释为数值,则发生 run-time 错误。 |
实例
实例
<script type=”text/vbscript”>
document.write(CBool(5) & “<br />”)
document.write(CBool(0) & “<br />”)
document.write(CBool(-5) & “<br />”)
</script>
以上实例输出结果:
True
False
True
False
True