js时间戳和时间格式之间的转换(二)

js时间戳和时间格式之间的转换(二)
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> // 获取当前时间戳(以s为单位) ...

阅读全文>>

阅读全文...

js时间戳和时间格式之间的转换(一)

js时间戳和时间格式之间的转换(一)
原文:http://xiaomiya.iteye.com/blog/2070329 //时间戳转换成日期时间2014-8-8 下午11:40:20 function formatDate(ns){ return new Date(parseInt(ns) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");...

阅读全文>>

阅读全文...