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

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

VBScript FormatDateTime 函数


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

The FormatDateTime function formats and returns a valid date or time expression.
FormatDateTime 函数能返回表达式,此表达式已被格式化为日期或时间

语法

FormatDateTime(date,format)

参数 描述
date Required. Any valid date expression (like Date() or Now())
必选项。要被格式化的日期表达式。(如Date()或Now())
format Optional. A Format value that specifies the date/time format to use
可选项。指示所使用的日期/时间格式的数值

实例 1

document.write("当前日期为: ")
document.write(FormatDateTime(Date()))
输出:
当前日期为: 2/22/2001

实例 2

document.write("当前日期为: ")
document.write(FormatDateTime(Date(),1))
输出:
当前日期为: Thursday, February 22, 2001

实例 3

document.write("当前日期为: ")
document.write(FormatDateTime(Date(),2))
输出:
当前日期为: 2/22/2001


Format Values

常数 描述
vbGeneralDate 0 Display a date in format mm/dd/yy. If the date parameter is Now(), it will also return the time, after the date
显示日期和/或时间。如果有日期部分,则将该部分显示为短日期格式。如果有时间部分,则将该部分显示为长时间格式。如果都存在,则显示所有部分。
vbLongDate 1 Display a date using the long date format: weekday, month day, year
使用计算机区域设置中指定的长日期格式显示日期
vbShortDate 2 Display a date using the short date format: like the default (mm/dd/yy)
使用计算机区域设置中指定的短日期格式显示日期。如默认的(月/日/年)
vbLongTime 3 Display a time using the time format: hh:mm:ss PM/AM
使用计算机区域设置中指定的时间格式显示时间
vbShortTime 4 Display a time using the 24-hour format: hh:mm
使用 24 小时格式 (hh:mm) 显示时间

评论 (0) All

登陆 | 还没注册?