1. 程式人生 > >時間與時間戳的相互轉換

時間與時間戳的相互轉換

    //所謂時間戳就是當前時間距離1970-01-01 08:00:00的總秒數乘以1000(毫秒數)不乘就是秒數

    //獲取當前時間(中國標準時間)
    var newDate = new Date();//Tue Sep 26 2017 13:31:26 GMT+0800 (中國標準時間)

    //將當前時間轉換成不同時間格式呈現(new Date()是本地時間)
    new Date().toDateString();   // Wed Jun 18 2014 
    new Date().toGMTString();   // Wed, 18 Jun 2014 02:33:24 GMT 
    new Date().toISOString();   // 2014-06-18T02:33:24.000Z
    new Date().toJSON();   // 2014-06-18T02:33:24.000Z 
    new Date().toLocaleDateString();   // 2014年6月18日 
    new Date().toLocaleString();   // 2014年6月18日 上午10:33:24 
    new Date().toLocaleTimeString();   // 上午10:33:24 
    new Date().toTimeString();   // 10:33:24 GMT+0800 (中國標準時間) 
    new Date().toUTCString();   // Wed, 18 Jun 2014 02:33:24 GMT

    //將時間轉換成時間戳
    var stringTime = "2014-07-10 10:21:12";
    var timestamp2 = Date.parse(new Date(stringTime))/ 1000;   //除1000得到秒數,時間戳,不除是毫秒數

    //獲取當前時間戳(以s為單位)
    var new_time_stamp=Date.parse(new Date())/1000;   //到1970-01-01 08:00:00的秒數為1506404874

    //時間戳轉時間
    var tt=new Date(parseInt(1506407875) * 1000).toLocaleString();   //"2017/9/26 下午2:37:55"

    //獲取年月日時分秒(可以將時間放入Date()裡獲取)
     var year=new Date().getFullYear();   //獲取年
     var month=new Date().getMonth()+1;   //月,因為是從0開始的,所以要加一
     var date=new Date().getDate();   //日
     var hours=new Date().getHours();   //時
     var minutes=new Date().getMinutes();   //分
     var seconds=new Date().getSeconds();   //秒