title | slug |
---|---|
Date.prototype.getDay() |
Web/JavaScript/Reference/Global_Objects/Date/getDay |
{{JSRef}}
getDay()
方法會根據當地時間將指定日期返回一星期中的第幾天,其中 0 代表星期日。 在當月的某天可以參考{{jsxref("Date.prototype.getDate()")}}。
{{EmbedInteractiveExample("pages/js/date-getday.html", "shorter")}}
dateObj.getDay()
返回一個整數,數值介於 0 到 6 之間,取決於當地時間對應出指定日期為星期幾:0 代表星期日,1 代表星期一,2 代表星期二,依此類推。
下面第二行表示根據日期對象'Xmas95'的值,把 1 賦值給'weekday'。則 1995 年 12 月 25 日是星期一。
var Xmas95 = new Date("December 25, 1995 23:15:30");
var weekday = Xmas95.getDay();
console.log(weekday); // 1
Note
如果需要,可以使用{{jsxref("DateTimeFormat", "Intl.DateTimeFormat")}}加上options
參數來獲取星期幾全名。使使用此方法能輕鬆做出各種國際語言:
var options = { weekday: "long" };
console.log(new Intl.DateTimeFormat("en-US", options).format(Xmas95));
// Monday
console.log(new Intl.DateTimeFormat("de-DE", options).format(Xmas95));
// Montag
{{Specifications}}
{{Compat}}
- {{jsxref("Date.prototype.getUTCDate()")}}
- {{jsxref("Date.prototype.getUTCDay()")}}
- {{jsxref("Date.prototype.setDate()")}}