JavaScrip(JS)t时间戳与时间⽇期间相互转换在javascript(js)中如何对时间戳与时间⽇期之间的相互转换以及⽤法。(转)
javascript的getTime()⽅法可以输⼊时间戳
利⽤js输⼊现在时间以及指定时间的时间戳
代码
1//将当前的时间转换成时间戳
2var now = new Date();
3 console.Time());
4//将指定的⽇期转换成时间戳
5var t = "2018-07-23 20:5:30";
6var T = new Date(t);
7 console.Time());
8//console.log(),为控制台打印
代码⽰图
代码运⾏结果
查看浏览器控制台
利⽤js的时间戳,输出时间⽇期格式
代码
1//输出现在时间的⽇期格式
2 console.log(new Date());
3//输⼊⼀个时间戳来转换成时间⽇期格式
4//飞鸟慕鱼博客
5var t = 1528459530000;
6  console.log(new Date(t));
代码显图
代码运⾏结果
关于javascript时间戳与时间⽇期格式转换的代码补充代码
1 <script type="text/javascript">
2// 获取当前时间戳(以s为单位)
3var timestamp = Date.parse(new Date());
4    timestamp = timestamp / 1000;
5//当前时间戳为:1403149534
6      console.log("当前时间戳为:" + timestamp);
7// 获取某个时间格式的时间戳
8var stringTime = "2018-07-10 10:21:12";
9var timestamp2 = Date.parse(new Date(stringTime));
10    timestamp2 = timestamp2 / 1000;
11//2018-07-10 10:21:12的时间戳为:1531189272
unix时间戳转换日期格式12    console.log(stringTime + "的时间戳为:" + timestamp2);
13// 将当前时间换成时间格式字符串
14var timestamp3 = 1531189272;
15var newDate = new Date();
16      newDate.setTime(timestamp3 * 1000);
17// Wed Jun 18 2018
18    console.DateString());
19// Wed, 18 Jun 2018 02:33:24 GMT
20      console.GMTString());
21// 2018-06-18T02:33:24.000Z
22    console.ISOString());
23// 2018-06-18T02:33:24.000Z
24    console.JSON());
25// 2018年6⽉18⽇
26    console.LocaleDateString());
27// 2018年6⽉18⽇上午10:33:24
28    console.LocaleString());
29// 上午10:33:24
30      console.LocaleTimeString());
31// Wed Jun 18 2018 10:33:24 GMT+0800 (中国标准时间)
32    console.String());
33// 10:33:24 GMT+0800 (中国标准时间)
34    console.TimeString());
35// Wed, 18 Jun 2018 02:33:24 GMT
36      console.UTCString());
37 Date.prototype.format = function(format) {
38var date = {
39        "M+": Month() + 1,
40        "d+": Date(),
41        "h+": Hours(),
42        "m+": Minutes(),
43        "s+": Seconds(),
44        "q+": Math.floor((Month() + 3) / 3),
45        "S+": Milliseconds()
46    };
47if (/(y+)/i.test(format)) {
48            format = place(RegExp.$1, (FullYear() + '').substr(4 - RegExp.$1.length));
49        }
50for (var k in date) {
51if (new RegExp("(" + k + ")").test(format)) {
52            format = place(RegExp.$1, RegExp.$1.length == 1
53                ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
54        }
55      }
56return format;
57  }
58  console.log(newDate.format('yyyy-MM-dd h:m:s'));
59  </script>
代码运⾏结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。