首页 > 代码库 > js 时间格式与时间戳的相互转换示例代码
js 时间格式与时间戳的相互转换示例代码
一.时间转换时间戳
function transdate(endTime){ var date=new Date(); date.setFullYear(endTime.substring(0,4)); date.setMonth(endTime.substring(5,7)-1); date.setDate(endTime.substring(8,10)); date.setHours(endTime.substring(11,13)); date.setMinutes(endTime.substring(14,16)); date.setSeconds(endTime.substring(17,19)); return Date.parse(date)/1000; }
二.时间戳转换时间
(1):转换成 2011-3-16 16:50:43 格式:
function getDate(tm){ var tt=new Date(parseInt(tm) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ") return tt; }
(2):转换成 2011年3月16日 16:50:43:
function getDate(tm){ var tt=new Date(parseInt(tm) * 1000).toLocaleString() return tt; }
(3):转换成 2011年3月16日 16:50
function getDate(tm){ var tt=new Date(parseInt(tm) * 1000).toLocaleString().substr(0,16); return tt; }
js 时间格式与时间戳的相互转换示例代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。