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

js指定日期格式

时间:2018-02-23 16:01:40      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:指定   str   style   time()   2-2   bsp   cond   string   转换   

 1 var nowDate = new Date();
 2 alert("当前时间为:"+nowDate);//当前时间为:Fri Feb 23 2018 14:16:31 GMT+0800 (中国标准时间)
 3 alert("当前毫秒为:"+nowDate.getTime());//当前毫秒为:1519366591738
 4 
 5 var myDate = new Date(nowDate.getTime());
 6 
 7 alert(myDate.toLocaleString());//转换成本地时间    2018/2/23 下午2:16:31
 8 var year = myDate.getFullYear();//
 9 var month = myDate.getMonth()>8 ? myDate.getMonth()+1 : ‘0‘+(myDate.getMonth()+1);//
10 var day = myDate.getDate()>9 ? myDate.getDate() : ‘0‘+myDate.getDate();//
11 var hour = myDate.getHours()>9 ? myDate.getHours() : ‘0‘+myDate.getHours();//
12 var minute = myDate.getMinutes()>9 ? myDate.getMinutes() : ‘0‘+myDate.getMinutes();//
13 var second = myDate.getSeconds()>9 ? myDate.getSeconds() : ‘0‘+myDate.getSeconds();//
14 
15 alert(year +‘-‘+ month +‘-‘ +day +‘ ‘+ hour +‘:‘+ minute +‘:‘+ second) ;//得到指定格式    2018-02-23 14:16:31

 

js指定日期格式

标签:指定   str   style   time()   2-2   bsp   cond   string   转换   

原文地址:https://www.cnblogs.com/webwrangler/p/8461892.html

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