我想用Javascript获取当前日期。
我还希望以这种格式显示日期:
dd month year @ hh:mm:ss EDT
今天的日期可以解决:
04 Aug 2011 @ 20:24:38 EDT
由于
答案 0 :(得分:7)
var d=new Date();
d.toUTCString();
这是你需要的吗?
答案 1 :(得分:2)
您可以使用Date object的各种属性轻松自行构建。要获取表示当前时刻的Date对象,请使用
var now = new Date();
答案 2 :(得分:1)
抓住date.js。它可以做你想要的。
答案 3 :(得分:1)
new Date();
将为您提供当前日期。
答案 4 :(得分:0)
let currentDate = (date = new Date()) => `${date.getDate()}/${date.getMonth() + 1}/${date.getFullYear()}`
console.log(currentDate());