1、日期格式转时间戮
function getTimestamp(time) { return Date.parse(new Date(time)); }
2、时间戮转日期格式
function transformPHPTime(time) { var date = new Date(time * 1000); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); return Y+M+D+h+m+s; }
以上就是小编为大家带来的JS 日期与时间戮相互转化的简单实例全部内容了,希望大家多多支持~
标签:
js日期转化为时间戳
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“JS 日期与时间戮相互转化的简单实例”评论...