在線客服
24小時免費咨詢電話:18978941786
客服時間:上午9:30~下午6點
學習ASP VBScript WeekdayName 函數(shù)
收藏 分享 發(fā)布日期:2012-2-12 16:30:51 編輯:admin 文章來源: 點擊率:
The WeekdayName function returns the weekday name of a specified day of the week. WeekdayName 函數(shù)可以返回一個字符串,表示星期中指定的某一天
語法
WeekdayName(weekday[,abbreviate[,firstdayofweek]]) |
參數(shù) | 描述 |
---|---|
weekday | Required. The number of the weekday 必選項。星期中某天的數(shù)值定義。各天的數(shù)值定義取決于 firstdayofweek 參數(shù)設(shè)置。 |
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. 可選項。指明星期第一天的數(shù)值 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 |