时间戳和日期转换
Posted 东歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳和日期转换相关的知识,希望对你有一定的参考价值。
注意: js 时间日期只识别 "2016/05/24" 格式
//日期转时间戳 var end = "2016-05-24"; end = end.replace(/-/g,‘/‘); var end_date = new Date(end); var time = end_date.getTime();
//日期格式转换 var newDate = "2016/05/24"; var newDate = new Date(newDate); newDate.format(‘yyyy-MM-dd‘);
//时间戳转换成日期 return new Date(parseInt(timeLog) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, "");
以上是关于时间戳和日期转换的主要内容,如果未能解决你的问题,请参考以下文章