js 时间格式转换

耗尽温柔 提交于 2019-12-01 11:53:11

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;
                };

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!