转换时间戳与时间截取

转换时间戳与时间截取//时间截取与转换时间戳

大家好,欢迎来到IT知识分享网。转换时间戳与时间截取"

//时间截取与转换时间戳

function timeChange(timeStamp) {
var newDate = new Date(timeStamp);
Date.prototype.format = function (format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S+": this.getMilliseconds()
};
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1
? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
}
}
return format;
};
var time = newDate.format('yyyy-MM-dd hh:mm:ss');//查找时间点,转换成时间类型
return time;
}
var tim= 1469980800000;
var newT=timeChange(tim).substr(8,8).replace(" ","日");
console.log(newT);
var time=(timeChange(tim-7*1000*24*60*60).substr(5,5)).replace("-"," ")+"~"+(timeChange(tim).substr(5,5)).replace("-"," ");
console.log(time);
var time1=(timeChange(tim-7*1000*24*60*60).substr(5,5)).replace("-","")+"~"+(timeChange(tim).substr(5,5)).replace("-","");
console.log(time1);

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/30866.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信