Date.prototype.getDay() - JavaScript 编辑

getDay() 方法根据本地时间,返回一个具体日期中一周的第几天,0 表示星期天。对于某个月中的第几天,参考Date.prototype.getDate().

语法

dateObj.getDay()

返回值

根据本地时间,返回一个0到6之间的整数值,代表星期几: 0 代表星期日, 1 代表星期一,2 代表星期二, 依次类推。

例子

使用getDay()

下面第二条语句,基于Date对象 Xmas95 的值,把 1 赋值给 weekday。也就是说1995年12月25日是星期一。

var Xmas95 = new Date("December 25, 1995 23:15:30");
var weekday = Xmas95.getDay();

console.log(weekday); // 1

注意:如果需要,可以使用Intl.DateTimeFormat与一个额外的options 参数,从而返回这天的全称(如"Monday").使用此方法,结果会更加国际化:

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

规范

规范版本规范状态注解
ECMAScript (ECMA-262)
Date.prototype.getDay
  
Living Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
Date.prototype.getDay
    
Standard
ECMAScript 5.1 (ECMA-262)
Date.prototype.getDay
        
Standard
ECMAScript 1st Edition (ECMA-262)StandardInitial definition. Implemented in JavaScript 1.0.

浏览器兼容性

BCD tables only load in the browser

相关链接

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:73 次

字数:5495

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文