js将时间戳格式化

<script>
function getLocalTime(nS) {
   return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');
}
alert(getLocalTime(1392706260));

</script>

你可能感兴趣的:(js,代码,时间戳)