最新的Web开发教程
 

VBScript中TIMEVALUE功能


<完整的VBScript参考

该TIMEVALUE函数返回一个包含时间的Date子类型的Variant。

句法

TimeValue(time)

参数 描述
time 需要。 从0:00:00时间(12:00:00 AM)为23:59:59 (11:59:59 PM)或任何表达式,表示在该范围内的时间

<%

response.write(TimeValue("5:55:59 PM") & "<br />")
response.write(TimeValue(#5:55:59 PM#) & "<br />")
response.write(TimeValue("15:34"))

%>

代码的输出将是:

5:55:59 PM
5:55:59 PM
3:34:00 PM
显示示例»

<完整的VBScript参考