我用js 從後台獲取了時間戳 用以下這個函數 將時間戳轉化為日期
function getLocalTime(nS)
{
return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,9);
};
在電腦上看是好的 得到的日期格式為 2015/9/1
但是在蘋果手機中顯示的是 中文 2015年9月1
在安卓手機中得到的是英文 tue sep 0
請問大家怎麼解決這個問題 我想要在不同的機器上獲得 統一的格式的日期。
謝謝。
最後這麼寫解決了:
function getLocalTime(nS) {
var ss = new Date(parseInt(nS) * 1000 ) ;
return ss.getFullYear()+'/'+(ss.getMonth()+1)+"/"+ss.getDate();
};
這個由浏覽器控制,你想統一就自己寫toLocaleString函數來實現格式統一
Date.prototype.toLocaleString = function () {
return this.getFullYear()+'-'+(this.getMonth()+1)+'-'+this.getDate()+' '+this.getHours()+':'+this.getMinutes()+':'+this.getSeconds()
}
var date = new Date();
alert(date.toLocaleString())