下面先来看第一种吧
<script> function getLocalTime(nS) { return new Date(parseInt(nS)).toLocaleString().replace(/:\d{1,2}$/,' '); } alert(getLocalTime(1468297800000)); </script>结果是
2010年12月23日 10:53
第二种
<script> function getLocalTime(nS) { return new Date(parseInt(nS)).toLocaleString().substr(0,17)} alert(getLocalTime(1468297800000)); </script>如果想将时间戳转换成这种格式:2010-10-20 10:00:00
看下面代码吧
<script> function getLocalTime(nS) { return new Date(parseInt(nS)).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } alert(getLocalTime(1468297800000)); </script>也可以这样写的
<script> function formatDate(now) { var year=now.getYear(); var month=now.getMonth()+1; var date=now.getDate(); var hour=now.getHours(); var minute=now.getMinutes(); var second=now.getSeconds(); return year+"-"+month+"-"+date+" "+hour+":"+minute+":"+second; } var d=new Date(1468297800000); alert(formatDate(d)); </script>