如何使用javascript获取格式化日期时间如2009-05-29 21:55:57?

时间:2009-05-29 14:41:45

标签: javascript datetime

使用新日期时,我得到如下内容:

2009年5月29日星期五22:39:02 GMT + 0800(中国标准时间)

但我想要的是xxxx-xx-xx xx:xx:xx格式的时间字符串

10 个答案:

答案 0 :(得分:45)

虽然在某些情况下它没有填充到两个字符,但它可以达到我想要的效果

function getFormattedDate() {
    var date = new Date();
    var str = date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " +  date.getHours() + ":" + date.getMinutes() + ":" + date.getSeconds();

    return str;
}

答案 1 :(得分:25)

乔纳森的答案缺乏领先的零点。 有一个简单的解决方案:

function getFormattedDate(){
    var d = new Date();

    d = d.getFullYear() + "-" + ('0' + (d.getMonth() + 1)).slice(-2) + "-" + ('0' + d.getDate()).slice(-2) + " " + ('0' + d.getHours()).slice(-2) + ":" + ('0' + d.getMinutes()).slice(-2) + ":" + ('0' + d.getSeconds()).slice(-2);

    return d;
}

基本上加0,然后只取最后2个字符。所以031将需要31. 01将采取01 ...

jsfiddle

答案 2 :(得分:5)

您可以使用toJSON()方法获取DateTime样式格式

var today = new Date().toJSON(); 
// produces something like: 2012-10-29T21:54:07.609Z

从那里你可以清理它......

获取日期和时间:

var today = new Date().toJSON().substring(0,19).replace('T',' ');

抓住正好日期:

var today = new Date().toJSON().substring(0,10).replace('T',' ');

抓住时间:

var today = new Date().toJSON().substring(10,19).replace('T',' ');

编辑:正如其他人所指出的,这只适用于UTC。请看上面的更好答案。

答案 3 :(得分:3)

对于你想要的东西可能有点过头了,但你有没有看过datejs

答案 4 :(得分:3)

您正在寻找的是 toISOString ,它将成为 ECMAScript Fifth Edition 的一部分。 在此期间,您只需使用json2.jsjson.org中的 toJSON 方法即可。

您感兴趣的部分是:

Date.prototype.toJSON = function (key) {
  function f(n) {
    // Format integers to have at least two digits.
    return n < 10 ? '0' + n : n;
  }
  return this.getUTCFullYear()   + '-' +
       f(this.getUTCMonth() + 1) + '-' +
       f(this.getUTCDate())      + 'T' +
       f(this.getUTCHours())     + ':' +
       f(this.getUTCMinutes())   + ':' +
       f(this.getUTCSeconds())   + 'Z';
};

答案 5 :(得分:2)

试试这个。

var datetime = new Date().toJSON().slice(0,10) 
    + " " + new Date(new Date()).toString().split(' ')[4];

console.log(datetime);

答案 6 :(得分:0)

Date.prototype.toUTCArray= function(){
    var D= this;
    return [D.getUTCFullYear(), D.getUTCMonth(), D.getUTCDate(), D.getUTCHours(),
    D.getUTCMinutes(), D.getUTCSeconds()];
}

Date.prototype.toISO= function(t){
    var tem, A= this.toUTCArray(), i= 0;
    A[1]+= 1;
    while(i++<7){
        tem= A[i];
        if(tem<10) A[i]= '0'+tem;
    }
    return A.splice(0, 3).join('-')+'T'+A.join(':');
    // you can use a space instead of 'T' here
}

Date.fromISO= function(s){
    var i= 0, A= s.split(/\D+/);
    while(i++<7){
        if(!A[i]) A[i]= 0;
        else A[i]= parseInt(A[i], 10);
    }
    --s[1];
    return new Date(Date.UTC(A[0], A[1], A[2], A[3], A[4], A[5]));  
}

   var D= new Date();
   var s1= D.toISO();
   var s2= Date.fromISO(s1);
   alert('ISO= '+s1+'\nlocal Date returned:\n'+s2);

答案 7 :(得分:0)

Any+Time(TM) JavaScript Library的AnyTime.Converter对象可以轻松地将JS Date对象转换为ISO或几乎任何其他格式......实际上,您想要的格式是默认格式,因此您可以简单地说:< / p>

(new AnyTime.Converter()).format(new Date());

答案 8 :(得分:0)

使用javascript

将毫秒转换为日期格式

- 供参考,见下面的jsfiddle

http://jsfiddle.net/kavithaReddy/cspn3pj0/1/

function () {
   var values = "/Date(1409819809000)/";
   var dt = new Date(parseInt(values.substring(6, values.length - 2)));
   var dtString1 = (dt.getMonth() + 1) + "/" + dt.getDate() + "/" + dt.getFullYear();
   alert(dtString1);
})();

答案 9 :(得分:0)

只是另一个解决方案: 我试图获得相同的格式(YYYY-MM-DD HH:MM:SS),但发现date.getMonth()不准确。所以我决定自己推导出格式。

此代码于2015年初部署, 并且有效直到日期为止。

var m_names =["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];

var d = new Date();
var spl = d.toString().split(' ');
var mnth = parseInt(m_names.indexOf(spl[1])+1).toString();
mnth = (mnth.length == 1) ? '0'+mnth : mnth
        //  yyyy   -   mm   -   dd       hh:mm:ss 
var data = spl[3]+'-'+mnth+'-'+spl[2]+' '+spl[4]
alert(data)

Test the code in JSFIDDLE