当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript WeekdayName 函数
The WeekdayName function returns the weekday name of a specified day of the week.
WeekdayName 函数可以返回一个字符串,表示星期中指定的某一天
WeekdayName(weekday[,abbreviate[,firstdayofweek]]) |
参数 | 描述 |
---|---|
weekday | Required. The number of the weekday 必选项。星期中某天的数值定义。各天的数值定义取决于 firstdayofweek 参数设置。 |
abbreviate | Optional. A Boolean value that indicates if the weekday name is to be abbreviated 可选项。Boolean 值,指明是否缩写表示星期各天的名称。如果省略, 默认值为 False,即不缩写星期各天的名称。 |
firstdayofweek | Optional. Specifies the first day of the week. 可选项。指明星期第一天的数值 Can take the following values:
|
document.write(WeekdayName(3)) 输出: Tuesday |
document.write(Date & "<br />") 输出: 1/15/2002 |
document.write(Date & "<br />") 输出: 1/15/2002 |