1. 程式人生 > >javascript 中new Date().toLocaleString()在不同瀏覽器中的結果不一致的解決方法

javascript 中new Date().toLocaleString()在不同瀏覽器中的結果不一致的解決方法

Date.prototype.toLocaleString = function () {
return this.getFullYear()+’-’+(this.getMonth()+1)+’-’+this.getDate()+’ &nbsp’+this.getHours()+’:’+this.getMinutes()+’:’+this.getSeconds()
};