根据本地时间格式,把 Date 对象转换为字符串。
dateObject.toLocaleString();
dateObject 的字符串表示,以本地时间区表示,并根据本地规则格式化。
var DATE = new Date(); console.log( DATE.toLocaleString() );
>>> 2013年11月18日 13:20:50