如何从日期对象获取Fri Oct 25 2019
(2019年10月25日星期五15:27:01 GMT + 0530(印度标准时间))
答案 0 :(得分:1)
使用JavaScript中的toDateString()
函数。
let d = new Date();
// note : the actual display output depend on your browser/system settings (locale)
console.log(d.toString());
console.log(d.toDateString());
这将采用从日期对象显示的字符串的第一个“仅日期”部分。
也可以通过字符串操作来完成,但是此功能实际上是针对此用例的,因此可能更清楚。