JavaScriptタイムスタンプは、時間と日の間に互いに変換されます。


今日は仕事中に取った時間をタイムスタンプに変換します。時間はどうやって使うか分かりません。資料を調べに行かなければなりません。ここでメモをとります。
1、日付をタイムスタンプに変換します。
日付をタイムスタンプに変換するには、まず日付を取得し、ここで直接日付を指定するか、または現在の日付を使用することができます。現在の日付を取得するには、new Date()を使って取得できます。直接コードします。

// (1)、           。
  var now = new Date();
  console.log(now.getTime()) //            ,getTime()      1970 1 1       。

// (2)、           。
  var t = "2017-12-08 20:5:30"; //  、 、 、 、           0.
  var T = new Date(t); //               。Fri Dec 08 2017 20:05:30 GMT+0800 (      )
  console.log(T.getTime()) //                。
2、タイムスタンプを日付に変換します。

var t = 787986456465; //          ,           ,     ,      1970 1              。
console.log(new Date(t)) // Wed Dec 21 1994 13:07:36 GMT+0800 (      )
var t2 = "2017-5-8 12:50:30";
console.log(new Date(t2)) // Mon May 08 2017 12:50:30 GMT+0800 (      )
var t3 = "2017-10-1";
console.log(new Date(t3)) // Sun Oct 01 2017 00:00:00 GMT+0800 (      )       ,      00:00:00
PS:以下はjavascriptタイムスタンプと日付文字列の相互変換を見ます。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
//        ( s   )
var timestamp = Date.parse(new Date());
timestamp = timestamp / 1000;
//      :1403149534
console.log("      :" + timestamp);
//             
var stringTime = "2014-07-10 10:21:12";
var timestamp2 = Date.parse(new Date(stringTime));
timestamp2 = timestamp2 / 1000;
//2014-07-10 10:21:12     :1404958872 
console.log(stringTime + "     :" + timestamp2);
//               
var timestamp3 = 1403058804;
var newDate = new Date();
newDate.setTime(timestamp3 * 1000);
// Wed Jun 18 2014 
console.log(newDate.toDateString());
// Wed, 18 Jun 2014 02:33:24 GMT 
console.log(newDate.toGMTString());
// 2014-06-18T02:33:24.000Z
console.log(newDate.toISOString());
// 2014-06-18T02:33:24.000Z 
console.log(newDate.toJSON());
// 2014 6 18  
console.log(newDate.toLocaleDateString());
// 2014 6 18    10:33:24 
console.log(newDate.toLocaleString());
//   10:33:24 
console.log(newDate.toLocaleTimeString());
// Wed Jun 18 2014 10:33:24 GMT+0800 (      )
console.log(newDate.toString());
// 10:33:24 GMT+0800 (      ) 
console.log(newDate.toTimeString());
// Wed, 18 Jun 2014 02:33:24 GMT
console.log(newDate.toUTCString());
Date.prototype.format = function(format) {
    var date = {
       "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+)/i.test(format)) {
       format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
    }
    for (var k in date) {
       if (new RegExp("(" + k + ")").test(format)) {
           format = format.replace(RegExp.$1, RegExp.$1.length == 1
              ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
       }
    }
    return format;
}
console.log(newDate.format('yyyy-MM-dd h:m:s'));
</script>
後は直接プロタイプを設定してフォーマットを変換します。
締め括りをつける
以上述べたのは小编が绍介したJavaScriptタイムスタンプと日本时间の间にお互いに転换して、皆さんに助けを求めています。ここでも私たちのサイトを応援してくれてありがとうございます。