热门 时间戳互相转换工具
时间:2018-2-27
分类:
热度:2024
var no=new Date().getTime();
console.log(no);
Date.prototype.format = function(format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.ge...