最佳答案
我对 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()
?