获得时间戳转为北京时间

来源:互联网 发布:景泰蓝 珐琅 区别 知乎 编辑:程序博客网 时间:2024/06/01 19:05
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();
}
原创粉丝点击