我对 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()
and索引到正确的值now.getDay()
?