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

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

VBScript DatePart 函数


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

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:
可以选择的值:

  • yyyy - 年份
  • q - 季度
  • m - 月份
  • y - Day of year
  • d - 天
  • w - 周
  • ww - Week of year
  • h - 小时
  • n - 分钟
  • s - 秒
date Required. Date expression to evaluate
必选项。要计算的日期表达式
firstdayofweek Optional. Specifies the day of the week.
可选项。指定星期中的第一天的常数

Can take the following values:
可选值:

  • 0 = vbUseSystemDayOfWeek - Use National Language Support (NLS) API setting
  • 1 = vbSunday - 星期日(默认)
  • 2 = vbMonday - 星期一
  • 3 = vbTuesday - 星期二
  • 4 = vbWednesday - 星期三
  • 5 = vbThursday - 星期四
  • 6 = vbFriday - 星期五
  • 7 = vbSaturday - 星期六
firstweekofyear Optional. Specifies the first week of the year.
可选项。指定一年中第一周的常数

Can take the following values:
可选值:

  • 0 = vbUseSystem - 使用区域语言支持 (NLS) API 设置。
  • 1 = vbFirstJan1 - 由 1 月 1 日所在的星期开始(默认)
  • 2 = vbFirstFourDays - 由在新年中至少有四天的第一周开始。
  • 3 = vbFirstFullWeek - 由在新的一年中第一个完整的周开始。

实例 1

document.write(Date & "<br />")
document.write(DatePart("d",Date))
输出:
1/14/2002
14

实例 2

document.write(Date & "<br />")
document.write(DatePart("w",Date))
输出:
1/14/2002
2

评论 (0) All

登陆 | 还没注册?