首页 > Web开发 > 详细

js中格式化时间戳

时间:2017-11-07 19:29:30      阅读:202      评论:0      收藏:0      [点我收藏+]
//将时间戳格式化 
function getMyDate(time){  //time为时间戳
    if(typeof(time)=="undefined"){
        return "";
    }
    var oDate = new Date(time),  
     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) +‘:‘+getzf(oSen);//最后拼接时间  
            
     return oTime;  
    };
    
     //补0操作,当时间数据小于10的时候,给该数据前面加一个0  
    function getzf(num){  
        if(parseInt(num) < 10){  
            num = ‘0‘+num;  
        }  
        return num;  
    }

 

js中格式化时间戳

原文:http://www.cnblogs.com/SunAutumn/p/7800057.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!