博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS 日期格式化
阅读量:5061 次
发布时间:2019-06-12

本文共 1081 字,大约阅读时间需要 3 分钟。

1、将中国标准时间格式化为(2017-06-06 15:05:04)

function formatDateTime(theDate) {

var _hour = theDate.getHours();

var _minute = theDate.getMinutes();

var _second = theDate.getSeconds();

var _year = theDate.getFullYear()

var _month = theDate.getMonth();

var _date = theDate.getDate();

if(_hour<10){_hour="0"+_hour ;}

if(_minute<10){_minute="0"+_minute;  }

if(_second<10){_second="0"+_second  }

_month = _month + 1;

if(_month < 10){_month = "0" + _month;}

if(_date<10){_date="0"+_date  }

return  _year + "-" + _month + "-" + _date + " " + _hour + ":" + _minute + ":" + _second ;

}

var time = new Date();

var formatTime = formatDateTime(time );

返回结果:

Tue Jun 06 2017 15:31:09 GMT+0800 (中国标准时间)

2017-06-06 15:31:09

2、把格式化时间转换为毫秒数

var formatTimeS = new Date('2017-06-06 15:31:09').getTime();

返回结果:1496734269900

3、把毫秒数转换为标准时间

var formatTimeS = new Date(1496734269900);

返回结果:

Tue Jun 06 2017 15:31:09 GMT+0800 (中国标准时间)

---------------------
作者:木雷双雄7
来源:CSDN
原文:https://blog.csdn.net/wlangmood/article/details/72879607
版权声明:本文为博主原创文章,转载请附上博文链接!

转载于:https://www.cnblogs.com/CHWLearningNotes/p/10333156.html

你可能感兴趣的文章
网络爬虫Heritrix源码分析(一) 包介绍
查看>>
__int128的实现
查看>>
Problem - 1118B - Codeforces(Tanya and Candies)
查看>>
jdk1.8 api 下载
查看>>
svn 图标不显示
查看>>
getElement的几中属性介绍
查看>>
iOS 使用Quartz 2D画虚线 【转】
查看>>
平面最接近点对
查看>>
HTML列表,表格与媒体元素
查看>>
PHP、Java、Python、C、C++ 这几种编程语言都各有什么特点或优点?
查看>>
雨林木风 GHOST_XP SP3 快速装机版YN12.08
查看>>
linux基础-命令
查看>>
java对象的深浅克隆
查看>>
Hadoop流程---从tpch到hive
查看>>
数据结构3——浅谈zkw线段树
查看>>
Introduction to my galaxy engine 2: Depth of field
查看>>
V2019 Super DSP3 Odometer Correction Vehicle List
查看>>
Python 3.X 练习集100题 05
查看>>
今时不同往日:VS2010十大绝技让VS6叹服
查看>>
设计器 和后台代码的转换 快捷键
查看>>