码迷,mamicode.com
首页 > Web开发 > 详细

js 时间戳 中国标准时间 年月日 日期之间的转换

时间:2019-02-13 21:03:36      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:title   new   date   ons   next   set   mon   body   年月日   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>日期格式的转换</title>
    </head>
    <body>
    </body>
    <script type="text/javascript">
    console.log(new Date()) //获取中国标准时间      //Wed Feb 13 2019 20:15:44 GMT+0800 (中国标准时间)
    console.log(new Date().getTime()) //标准时间变为时间戳   //1550060144673
    


    //将中国标准时间转换为年月日格式  ----开始
    function formatTen(num) { 
        return num > 9 ? (num + "") : ("0" + num); 
    } 
    function formatDate(date) { 
        var year = date.getFullYear(); 
        var month = date.getMonth() + 1; 
        var day = date.getDate(); 
        var hour = date.getHours(); 
        var minute = date.getMinutes(); 
        var second = date.getSeconds(); 
        return year + "-" + formatTen(month) + "-" + formatTen(day); 
    }
    //将中国标准时间转换为年月日格式  ----结束
    
    

        //标准时间变为年月日格式的使用
    var d1=new Date()
    var d2=formatDate(d1)
    console.log(d2)  //2019-02-13



        //在当前日期上加几天
    function getNextDay(d,t){
            d = new Date(new Date(d).getTime()+(1000*60*60*24)*t);   //先把标准时间变为时间戳再计算要加的天数
            //格式化
            return d.getFullYear()+"-"+(d.getMonth()+1)+"-"+d.getDate();  //转换一下格式
     }
    console.log(getNextDay(‘2019-02-11‘,6))        //2019-2-17
    </script>
</html>

js 时间戳 中国标准时间 年月日 日期之间的转换

标签:title   new   date   ons   next   set   mon   body   年月日   

原文地址:https://www.cnblogs.com/lml-lml/p/10371728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!