我需要从 Date 对象中获取月份中的某一天,但该getDay()
方法似乎返回了星期几。有没有返回月份日期的函数?
问问题
69218 次
4 回答
114
于 2012-10-11T17:22:55.747 回答
34
尝试getDate()代替。令人困惑的命名,但这就是生活......
于 2012-10-11T17:23:27.040 回答
21
var date = new Date().getDate();
来自 Mozilla 开发者网络:
Date.prototype.getDate() getDate() 方法根据本地时间返回指定日期的月份日期。
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate
于 2012-10-11T17:24:22.657 回答
8
const date = new Date();
const day = date.getDate();
const month = date.getMonth() + 1;
const year = date.getFullYear();
于 2019-12-02T22:43:46.787 回答