VBScript 函数参考手册
MonthName 函数可返回指定的月份的名称。
MonthName(month[,abbreviate])
document.write(MonthName(8))
输出:
八月
document.write(MonthName(8,true))
Aug
注释:在中文系统中,仍然输出为“八月”。
Search: