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

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

VBScript TimeValue 函数


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

The TimeValue function returns a Variant of subtype Date that contains the time.
TimeValue 函数可以返回包含时间的 Date 子类型的 Variant

语法

TimeValue(time)

参数 描述
time Required. A time from 0:00:00 (12:00:00 A.M.) to 23:59:59 (11:59:59 P.M.) or any expression that represents a time in that range
必选项。time 参数通常是代表从 0:00:00 (12:00:00 A.M.) 到 23:59:59 (11:59:59 P.M.) 的字符串表达式(包括 0:00:00 和 23:59:59)。不过,time 也可以是代表该范围内任何时间的表达式

实例 1

document.write(TimeValue("5:55:59 PM") & "<br />")
document.write(TimeValue(#5:55:59 PM#) & "<br />")
document.write(TimeValue("15:34"))
输出:
5:55:59 PM
5:55:59 PM
3:34:00 PM

评论 (0) All

登陆 | 还没注册?