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

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

VBScript MonthName 函数


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

The MonthName function returns the name of the specified month.
MonthName 函数能返回表明指定月份的字符串。

语法

MonthName(month[,abbreviate])

参数 描述
month Required. Specifies the number of the month (January is 1, February is 2, etc.)
必选项。月份的数值定义。例如,一月是 1,二月是 2,以此类推
abbreviate Optional. A Boolean value that indicates if the month name is to be abbreviated. Default is False
可选项。Boolean 值,表明月份名称是否简写。如果省略,默认值为 False,即不简写月份名称。

实例 1

document.write(MonthName(8))
输出:
August

实例 2

document.write(MonthName(8,true))
输出:
Aug

评论 (0) All

登陆 | 还没注册?