前几篇文章中说了一下,在PHP脚本中如何对时间进行时间戳与时间格式的转换,今天我们来说说在javascript(js)中如何对时间戳与时间日期之间的相互转换以及用法。
javascript的getTime()方法可以输入时间戳
利用js输入现在时间以及指定时间的时间戳
代码
//将当前的时间转换成时间戳 var now = new Date(); console.log(now.getTime()); //将指定的日期转换成时间戳 var t = "2018-07-23 20:5:30"; var T = new Date(t); console.log(T.getTime()); //console.log(),为控制台打印
代码示图

代码运行结果
查看浏览器控制台

利用js的时间戳,输出时间日期格式
代码
//输出现在时间的日期格式 console.log(new Date()); //输入一个时间戳来转换成时间日期格式 // var t = 1528459530000; console.log(new Date(t));
代码显图

代码运行结果

关于javascript时间戳与时间日期格式转换的代码补充
代码
<script type="text/javascript">
// 获取当前时间戳(以s为单位)
var timestamp = Date.parse(new Date());
timestamp = timestamp / 1000;
//当前时间戳为:1403149534
console.log("当前时间戳为:" + timestamp);
// 获取某个时间格式的时间戳
var stringTime = "2018-07-10 10:21:12";
var timestamp2 = Date.parse(new Date(stringTime));
timestamp2 = timestamp2 / 1000;
//2018-07-10 10:21:12的时间戳为:1531189272
console.log(stringTime + "的时间戳为:" + timestamp2);
// 将当前时间换成时间格式字符串
var timestamp3 = 1531189272;
var newDate = new Date();
newDate.setTime(timestamp3 * 1000);
// Wed Jun 18 2018
console.log(newDate.toDateString());
// Wed, 18 Jun 2018 02:33:24 GMT
console.log(newDate.toGMTString());
// 2018-06-18T02:33:24.000Z
console.log(newDate.toISOString());
// 2018-06-18T02:33:24.000Z
console.log(newDate.toJSON());
// 2018年6月18日
console.log(newDate.toLocaleDateString());
// 2018年6月18日 上午10:33:24
console.log(newDate.toLocaleString());
// 上午10:33:24
console.log(newDate.toLocaleTimeString());
// Wed Jun 18 2018 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toString());
// 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toTimeString());
// Wed, 18 Jun 2018 02:33:24 GMT
console.log(newDate.toUTCString());
Date.prototype.format = function(format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S+": this.getMilliseconds()
};
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1
? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
}
}
return format;
}
console.log(newDate.format('yyyy-MM-dd h:m:s'));
</script>代码运行结果:

PS:本文的部份代码来自网,亲测可用
本文JavaScrip(JS)t时间戳与时间日期间相互转换到此结束。不要指望别人来帮你走路,不要指望谁能帮你挨疼。痛,要自己扛;伤,要自己愈。有些路不合脚,却必须走;有些选择不合心,却要知道适应。人只有经历过了不如意,才知道生活真的不容易。路是自己的,要走;心是自己的,要懂。所求越少,得到越多;心越简单,快乐越多。无谓于得,不计于失,才能真正体会到追求的快乐。小编再次感谢大家对我们的支持!




