当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript DatePart 函数
The DatePart function returns the specified part of a given date.
DatePart函数能返回给定日期的指定部分。
DatePart(interval,date[,firstdayofweek[,firstweekofyear]]) |
参数 | 描述 |
---|---|
interval | Required. The interval of time to return. 必选项。字符串表达式表示要返回的时间间隔 Can take the following values:
|
date | Required. Date expression to evaluate 必选项。要计算的日期表达式 |
firstdayofweek | Optional. Specifies the day of the week. 可选项。指定星期中的第一天的常数 Can take the following values:
|
firstweekofyear | Optional. Specifies the first week of the year. 可选项。指定一年中第一周的常数 Can take the following values:
|
document.write(Date & "<br />") 输出: 1/14/2002 |
document.write(Date & "<br />") 输出: 1/14/2002 |