javascript 将时间戳格式化

 

<script>
function
getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " "); } alert(getLocalTime(1177824835));
</script>


用正则吧!!

posted on 2013-06-26 09:34  浩瀚孤鸿  阅读(221)  评论(0编辑  收藏  举报