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

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

VBScript DateSerial 函数


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

The DateSerial function returns a Variant of subtype Date for a specified year, month, and day.
DateSerial 函数可对于指定的年、月、日,返回 Date 子类型的 Variant

语法

DateSerial(year,month,day)

参数 描述
year Required. A number between 100 and 9999, or a numeric expression. Values between 0 and 99 are interpreted as the years 1900–1999. For all other year arguments, use a complete four-digit year
必选项。从 100 到 9999 之间的数字或数值表达式
month Required. Any numeric expression
必选项。任意数值表达式。
day Required. Any numeric expression
必选项。任意数值表达式。

实例1

document.write(DateSerial(1996,2,3) & "<br />")
document.write(DateSerial(1990-20,9-2,1-1))
输出:
2/3/1996
6/30/1970

评论 (0) All

登陆 | 还没注册?