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

js中格式化时间戳

时间:2017-11-07 19:53:35      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:cti   oda   格式   var   blog   logs   minutes   time   style   

//将时间戳格式化 
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中格式化时间戳

标签:cti   oda   格式   var   blog   logs   minutes   time   style   

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

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