zoukankan      html  css  js  c++  java
  • js unix时间戳转换

    一、unix时间戳转普通时间:
    var unixtime=1358932051;
    var unixTimestamp = new Date(unixtime* 1000); 
    commonTime = unixTimestamp.toLocaleString();
    alert("普通时间为:"+commonTime);
    二、普通时间转unix时间戳
    var str ="2013-01-01 00:00:00";
    str = str.replace(/-/g,"/");
    var date = new Date(str); 
    var humanDate = new Date(Date.UTC(date.getFullYear(),date.getMonth(),date.getDate(),date.getHours(),date.getMinutes(), date.getSeconds())); 
    alert(humanDate.getTime()/1000 - 8*60*60);                              
    var myDate = new Date(); 
    myDate.getYear();        //获取当前年份(2位) 
    myDate.getFullYear();    //获取完整的年份(4位,1970-????) 
    myDate.getMonth();       //获取当前月份(0-11,0代表1月) 
    myDate.getDate();        //获取当前日(1-31) 
    myDate.getDay();         //获取当前星期X(0-6,0代表星期天) 
    myDate.getTime();        //获取当前时间(从1970.1.1开始的毫秒数) 
    myDate.getHours();       //获取当前小时数(0-23) 
    myDate.getMinutes();     //获取当前分钟数(0-59) 
    myDate.getSeconds();     //获取当前秒数(0-59) 
    myDate.getMilliseconds();    //获取当前毫秒数(0-999) 
    myDate.toLocaleDateString();     //获取当前日期 
    var mytime=myDate.toLocaleTimeString();     //获取当前时间 
    myDate.toLocaleString( );        //获取日期与时间 
  • 相关阅读:
    【大数据】Hadoop常用启动命令
    Codeforces Round #695 (Div. 2)
    Codeforces Round #668 (Div. 2)
    Codeforces Round #666 (Div. 2)
    Educational Codeforces Round 94 (Rated for Div. 2)
    Sum Queries? CodeForces
    New Year and Old Subsequence CodeForces
    Gym
    huntian oy HDU
    The Boss on Mars HDU
  • 原文地址:https://www.cnblogs.com/whlives/p/3881355.html
Copyright © 2011-2022 走看看