【JavaScript常用方法整理】—JS日付フォーマット変換方法(T.020-0708-02)


ここに目次のタイトルを書きます.
  • .日付を指定のフォーマットに変換する:
  • .指定された日付を「年月日」の形式に変換します.コードは以下の通りです.
  • .「タイムスタンプ」を「年月日」の形式に変換します.
  • 1.日付を指定の書式に変換する:
    例えば、年月日に変換する時、分秒というフォーマットです.yyy-M-dd hh:mm:ssまたはyyy-M-dd.もちろんネット上の方法です.まとめただけです.
    Dateプロトタイプに以下の方法を追加できます.
    Date.prototype.format = function(fmt) {
        var o = {
            "M+": this.getMonth() + 1, //   
            "d+": this.getDate(), //  
            "h+": this.getHours(), //   
            "m+": this.getMinutes(), //  
            "s+": this.getSeconds(), //  
            "q+": Math.floor((this.getMonth() + 3) / 3), //   
            "S": this.getMilliseconds() //   
        };
        if (/(y+)/.test(fmt)) {
            fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        }
        for (var k in o) {
            if (new RegExp("(" + k + ")").test(fmt)) {
                fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
            }
        }
        return fmt;    
    }
    
    //            :
    var time1 = new Date().format("yyyy-MM-dd hh:mm:ss");
    console.log(time1); // 2020-07-08 10:23:15
    
    var time2 = new Date().format("yyyy-MM-dd");
    console.log(time2); //2020-07-08
    
    2.指定された日付を「年月日」の書式に変換するコードは以下の通りです.
     var oldTime = (new Date("2012/12/25 20:11:11")).getTime();
     var curTime = new Date(oldTime).format("yyyy-MM-dd");
     console.log(curTime); //2012-12-25
    
    3.「タイムスタンプ」を「年月日」の形式に変換します.
    var da = 1402233166999;
    da = new Date(da);
    var year = da.getFullYear() + ' ';
    var month = da.getMonth() + 1 + ' ';
    var date = da.getDate() + ' ';
    console.log([year, month, date].join('-')); //2014 -6 -8