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

js将时间戳转为时间格式

时间:2019-01-03 12:08:10      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:code   nbsp   时间戳   int   span   col   mem   格式   parse   

时间戳转时间格式

   //分钟
                   let timeM= parseInt(msg/1000/60%60); 
                   if(timeM<10){
                      timeM="0"+timeM;
                       }
                   //秒钟
                   let timeS=parseInt(msg/1000%60);
                   if(timeS<10){
                       timeS="0"+timeS;
                        }
                  let time=timeM+":"+timeS;

 

js将时间戳转为时间格式

标签:code   nbsp   时间戳   int   span   col   mem   格式   parse   

原文地址:https://www.cnblogs.com/qq376324789/p/10213283.html

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