js Date 時間轉換 毫秒 中文 自定義
阿新 • • 發佈:2019-02-17
Date.prototype.toLocaleString=function(){ var year=this.getFullYear(); if((this.getMonth()+1)<10){ var month="0"+(this.getMonth() + 1); } if((this.getDate()<10)){ var day="0"+this.getDate(); } // return this.getFullYear() + "-" + (this.getMonth() + 1) + "-" + this.getDate(); return year+'-'+month+'-'+day; }
有些時間格式要求這樣,可以在裡面判斷自己修改,這樣定義就是:2010-01-01
Date.prototype.toLocaleString = function() { return this.getFullYear() + "年" + (this.getMonth() + 1) + "月" + this.getDate() + "日 " + this.getHours() + "點" + this.getMinutes() + "分" + this.getSeconds() + "秒"; };
2010年01月01日 12點12分12秒
new Date.getTime()
把時間轉換成毫秒數 var newDate=new Date().getTime();
console.log(newDate);//把當前時間轉換成毫秒
var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); //得到毫秒數
console.log(oldTime);
var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); //得到毫秒數
var newTime = new Date(oldTime); //就得到普通的時間了
console.log(newTime.toLocaleString());//轉換成中文