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

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

VBScript DateAdd 函数


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

The DateAdd function returns a date to which a specified time interval has been added.
DateAdd函数可以返回已添加指定时间间隔的日期。

语法

DateAdd(interval,number,date)

参数 描述
interval Required. The interval you want to add
必须的。你所要加入的间隔类型

Can take the following values:
可以从下面这些进行选择:

  • yyyy - 年份
  • q - 季度
  • m - 月份
  • y - Day of year
  • d - 天
  • w - 周
  • ww - Week of year
  • h - 小时
  • n - 分钟
  • s - 秒
number Required. The number of interval you want to add. Can either be positive, for dates in the future, or negative, for dates in the past
必须的。你所希望的间隔数值。
date Required. Variant or literal representing the date to which interval is added
必须的。被加上指定时间间隔的日期

实例 1

'Add one month to January 31, 2000
'给2000年1月31号增加1个月
document.write(DateAdd("m",1,"31-Jan-00"))
输出:
2/29/2000

实例 2

'Add one month to January 31, 2001
'为2001年的1月31号加上一个月
document.write(DateAdd("m",1,"31-Jan-01"))
输出:
2/28/2001

实例 3

'Subtract one month from January 31, 2001
'给2001年1月31号减去1个月
document.write(DateAdd("m",-1,"31-Jan-01"))
输出:
12/31/2000


尝试与演示

DateAdd
How to use the DateAdd Function add a one month to a date.
使用DateAdd函数给某日期加上一个月

DateAdd
How to use the DateAdd Function subtract a one month to a date.
使用DateAdd函数给某日期减去一个月

评论 (0) All

登陆 | 还没注册?