时间戳转stringstring转时间获取时间1、时间戳转时间
function formatDateDay(value,type='-') {
if(value) {
let date = new Date(parseInt(value) * 1000)
let FullYear()
let M = (Month()+1 < 10 ? '0'+(Month()+1) : Month()+1)
let D = Date()
let h = Hours()
let m = Minutes()
D=parseInt(D)<10 ? '0'+D: D
h=parseInt(h)<10 ? '0'+h: h
m=parseInt(m)<10 ? '0'+m: m
return Y+type+M+type+D
}else{
return '暂⽆信息'
}
}
2、时间戳时间差是否显⽰时分
function getTimeDiff(value,timeT=0,needTime = false){
let date = value===''?new Date():new Date(parseInt(value) * 1000)
date.Date() + timeT);//如果有时间差
let Y = FullYear()
let M =  Month() + 1
let D = Date()
let h = Hours()
let m = Minutes()
M =  parseInt(M) < 10 ? '0' + M : M
D = parseInt(D) < 10 ? '0' + D : D
h = parseInt(h) < 10 ? '0' + h : h
m = parseInt(m) < 10 ? '0' + m : m
if(needTime){string转date的方法
return Y + '-' + M + '-' + D + ' ' + h + ':' + m
} else {
return Y + '-' + M + '-' + D
}
}
3、时间转时间戳
function dateToTimestamp(date){
if(date){
date = place(/\-/g, "/")
date = new Date(date).getTime()/1000
return date
}else{
return 0;
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。