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

js 时间格式转换

时间:2019-10-16 11:32:33      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:nbsp   str   ret   ring   rto   color   style   var   time   

js时间格式转换

格式化时间转成时间戳

//格式化转时间戳(单位秒)
                function strtotime(strtime) {
                    strtime = strtime.substring(0, 19);
                    strtime = strtime.replace(/-/g, ‘/‘);
                    strtime = new Date(strtime).getTime() / 1000;
                    return strtime;
                }

时间戳转格式化时间

        //时间戳(单位秒)转格式化
                function getMyDate(str) {
                    str = str * 1000;
                    var oDate = new Date(str),
                        oYear = oDate.getFullYear(),
                        oMonth = oDate.getMonth() + 1,
                        oDay = oDate.getDate(),
                        oHour = oDate.getHours(),
                        oMin = oDate.getMinutes(),
                        oSen = oDate.getSeconds(),
                        oTime = oYear + ‘-‘ + getzf(oMonth) + ‘-‘ + getzf(oDay) + ‘ ‘ + getzf(oHour) + ‘:‘ +
                        getzf(oMin) + ‘:00‘; //最后拼接时间
                    return oTime;
                };

 

js 时间格式转换

标签:nbsp   str   ret   ring   rto   color   style   var   time   

原文地址:https://www.cnblogs.com/huay/p/11684234.html

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