1. 程式人生 > >獲得時間戳轉為北京時間

獲得時間戳轉為北京時間

function toggleTstamp(timestamp){
/*1.重寫了toLocaleString方法*/
Date.prototype.toLocaleString = function() {
          return this.getFullYear() + "年" + 
          (this.getMonth() + 1) + "月" + 
          this.getDate() + "日 " 
          + this.getHours() + "點"
          + this.getMinutes() + "分"
          + this.getSeconds() + "秒";
};
var timestring=new Date(timestamp);/*傳入毫秒數返回東八區中國標準時間*/
return timestring.toLocaleString();
}