时间戳转换成时间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”)的主要内容,如果未能解决你的问题,请参考以下文章