最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Does getDay() comply with ISO 8601? - Stack Overflow

programmeradmin1浏览0评论

I'm having real trouble working out whether JavaScript's getDay() method (.asp) plies with ISO 8601.

getDay() returns 0 for Sunday, 1 for Monday etc..

The documentation remends mapping to day names like this:

var weekday=new Array(7);
weekday[0]="Sunday";
weekday[1]="Monday";
weekday[2]="Tuesday";
...
var n = weekday[(new Date()).getDay()];

I can only see that the ISO standard defines Monday as the first day of the week. I would assume this means Monday should be 0, not Sunday.

Does anyone have any experience with this? Can you clarify and would you remend overriding the method to make Monday the first day of the week?

I'm having real trouble working out whether JavaScript's getDay() method (http://www.w3schools./jsref/jsref_getday.asp) plies with ISO 8601.

getDay() returns 0 for Sunday, 1 for Monday etc..

The documentation remends mapping to day names like this:

var weekday=new Array(7);
weekday[0]="Sunday";
weekday[1]="Monday";
weekday[2]="Tuesday";
...
var n = weekday[(new Date()).getDay()];

I can only see that the ISO standard defines Monday as the first day of the week. I would assume this means Monday should be 0, not Sunday.

Does anyone have any experience with this? Can you clarify and would you remend overriding the method to make Monday the first day of the week?

Share Improve this question asked Jan 11, 2013 at 1:34 John HJohn H 2,4981 gold badge22 silver badges35 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5
var weekday=new Array(7);
weekday[0]="Monday";
weekday[1]="Tuesday";
weekday[2]="Wednesday";
...
var n = weekday[((new Date()).getDay() + 6) % 7 + 1];

or extend the Date prototype:

Date.prototype.getISODay = function(){ return (this.getDay() + 6) % 7 + 1; }

and then use

var n = weekday[(new Date()).getISODay()];

How the weekdays are represented only matters if you want to use a date format where the weekday actually is represented as a number, e.g. the YYYY-Www-D format, or if you want to get the week number for a specific date.

Otherwise it doesn't matter how the weekdays are represented numerically. A monday is still a monday.

The only sources I could find which state which numbers the days of the week should be were Wikipedia and this page. Both suggest the day of week numbers should be 1 to 7 and start from Monday.

I support ic3b3rg's suggestion of extending Date.prototype, although would suggest using UTC and a literal to get the names. The following example uses an Object and an anonymous function so the names only need be defined once.

(function () {
    var dayNames = {1: 'Monday', 2: 'Tuesday', 3: 'Wednesday', 4: 'Thursday', 5: 'Friday', 6: 'Saturday', 7: 'Sunday'};
    // Local time
    Date.prototype.getISODay = function () {return this.getDay() || 7;};
    Date.prototype.getISODayName = function () {return dayNames[this.getDay() || 7];};
    // Date.prototype.getDayName = Date.prototype.getISODayName
    // UTC
    Date.prototype.getUTCISODay = function () {return this.getUTCDay() || 7;};
    Date.prototype.getUTCISODayName = function () {return dayNames[this.getUTCDay() || 7];};
    // Date.prototype.getUTCDayName = Date.prototype.getUTCISODayName;
}());

As the day name would be the same as the ISO day name (assuming English), I've added in extra lines which can be unmented if you want both.

发布评论

评论列表(0)

  1. 暂无评论