当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript MonthName 函数
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,即不简写月份名称。 |
document.write(MonthName(8)) 输出: August |
document.write(MonthName(8,true)) 输出: Aug |