我对Javascript不太了解,我发现的其他问题与日期操作有关,不仅是我需要的信息。
目的
我希望获得以下格式的日期:
2011年1月27日星期四17:42:21打印
到目前为止,我得到以下信息:
var now = new Date();
var h = now.getHours();
var m = now.getMinutes();
var s = now.getSeconds();
h = checkTime(h);
m = checkTime(m);
s = checkTime(s);
var prnDt = "Printed on Thursday, " + now.getDate() + " January " + now.getFullYear() + " at " + h + ":" + m + ":" s;
我现在需要知道如何获取星期几和一年中的月份(他们的名字)。
有没有一种简单的方法可以做到这一点,或者我应该考虑使用数组,而我只会使用now.getMonth()
和索引到正确的值now.getDay()
?
Date
对象中。我待会儿更新。