js把时间戳转换为普通日期格式
Posted 爱博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js把时间戳转换为普通日期格式相关的知识,希望对你有一定的参考价值。
第一种
function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\\d{1,2}$/,\' \'); } alert(getLocalTime(1293072805));
function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)} alert(getLocalTime(1293072805));
第二种
function formatDate(now) {
var year=now.getFullYear();
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(1230999938);
alert(formatDate(d));
以上是关于js把时间戳转换为普通日期格式的主要内容,如果未能解决你的问题,请参考以下文章