VBScript DateSerial 函数

与星星私奔

VBScript DateSerial 函数



DateSerial 函数返回指定的年、月、日的子类型 Date 的 Variant 。

语法


DateSerial(year,month,day)


参数 描述
year 必需。介于 100 到 9999 的数字,或数值表达式。介于 0 到 99 的值被视为 1900–1999。对于所有其他的 year 参数,请使用完整的 4 位年份。
month 必需的。任何数值表达式。
day 必需的。任何数值表达式。

实例

实例 1

<script type="text/vbscript">

document.write(DateSerial(2010,2,3))

</script>

以上实例输出结果:

2/3/2010

实例 2

减去 10 天:

<script type="text/vbscript">

document.write(DateSerial(2010,2,3-10))

</script>

以上实例输出结果:

1/24/2010


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码