1.toLocaleDateString (根据本地时间把Date 对象的日期部分转换为字符串): var time = new Date(); var formatTime = time.toLocaleDateString(); //print 2017/4/18 2.将时间指定为 年-月-日 格式,例:2017-1-1 var date = new Date('Thu May 12 2016 08:00:00 GMT+0800 (中国标准时间)'); formatTime=date.get…
var format = function (time, format) { var t = new Date(time); var tf = function (i) { return (i < 10 ? '0' : '') + i }; return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function(a) { switch (a) { case 'yyyy': return tf(t.getFullYear()); break; case 'MM…