Fork me on GitHub
摘要: /** * 时间工具类 */ /** * 获取现在的时间戳(精确到s) * 使用:new Date().nowTimestamp * @type {number} */ Date.prototype.nowTimestamp = Date.parse(new Date()) / 1000; /** * 时间戳转换成Date * 使用:new Date().timestampT... 阅读全文
posted @ 2010-11-15 17:32 磊哥|www.javacn.site 阅读(9986) 评论(0) 推荐(0) 编辑