在线客服
24小时免费咨询电话:18978941786
客服时间:上午9:30~下午6点
学习ASP VBScript WeekdayName 函数
收藏 分享 发布日期:2012-2-12 16:30:51 编辑:admin 文章来源: 点击率:
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:
|
实例 1
document.write(WeekdayName(3)) 输出: Monday |
实例 2
document.write(Date & "<br />") 输出: 10/22/2007 |
实例 3
document.write(Date & "<br />") 输出: 10/22/2007 |
