VBScript Abs 函数
Abs 函数返回指定数字的绝对值。
注意:如果 number 参数包含 Null,则返回 Null。
注意:如果 number 参数是一个未初始化的变量,则返回 0。
语法
Abs(number)
参数 | 描述 |
---|---|
number | 必需。一个数值表达式。 |
实例
实例 1
<script type="text/vbscript">
document.write(Abs(1) & "<br />")
document.write(Abs(-1))
</script>
document.write(Abs(1) & "<br />")
document.write(Abs(-1))
</script>
以上实例输出结果:
1
1
1
实例 2
<script type="text/vbscript">
document.write(Abs(48.4) & "<br />")
document.write(Abs(-48.4))
</script>
document.write(Abs(48.4) & "<br />")
document.write(Abs(-48.4))
</script>
以上实例输出结果:
48.4
48.4
48.4
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com