时间戳转换成时间js(年-月-日,例如“2017-04-22”)

Posted lijingran

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳转换成时间js(年-月-日,例如“2017-04-22”)相关的知识,希望对你有一定的参考价值。

 1  function GetDateByShiJianChuo(timespan) {
 2         var date = new Date(parseInt(timespan.replace("/Date(", "").replace(")/", "")));
 3         var dateStr = date.toLocaleDateString();
 4         dateStr = dateStr.replace("/", "-").replace("/", "-");
 5         return dateStr;
 6         //console.log(date.toLocaleDateString());//2017/4/12
 7         //console.log(date.toDateString());//Wed Apr 12 2017
 8         //console.log(date.toLocaleString());//2017/4/12 上午12:00:00
 9         //console.log(date.toLocaleTimeString());//上午12:00:00
10     }

 

以上是关于时间戳转换成时间js(年-月-日,例如“2017-04-22”)的主要内容,如果未能解决你的问题,请参考以下文章

使用JS,时间戳数值怎么转换成日期

js页面里时间戳转日期

js把时间戳只转换为“时“和”分”

Unix时间戳转换怎样在Excel批量修改

32位unix时间戳哪一年耗尽

js时间戳怎么转成日期格式