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

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

VBScript DateValue 函数


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

The DateValue function returns a type Date.
DateValue 函数可返回 Date 子类型的 Variant

Note: If the year part of date is omitted this function will use the current year from the computer's system date.
注意:如果日期中的年份被忽略函数回使用计算机系统日期的当前年份。

Note: If the date parameter includes time information it will not be returned. However, if date includes invalid time information, a run-time error will occur.
注意:如果 date 参数包含时间信息,则 DateValue 不会返回时间信息。但是如果 date 包含无效的时间信息(如 "89:98"),就会出现错误。

语法

DateValue(date)

参数 描述
date Required. A date from January 1, 100 through December 31, 9999 or any expression that can represent a date, a time, or both a date and time
date 参数应是字符串表达式,表示从 100 年 1 月 1 日到 9999 年 12 月 31 日中的一个日期。但是,date 也可以是表示上述范围内的日期、时间或日期时间混合的任意表达式。

实例 1

document.write(DateValue("31-Jan-02") & "<br />")
document.write(DateValue("31-Jan") & "<br />")
document.write(DateValue("31-Jan-02 2:39:49 AM"))
输出:
1/31/2002
1/31/2002
1/31/2002

评论 (0) All

登陆 | 还没注册?