我有一个日期,格式是2014年5月11日太阳。如何使用JavaScript将其转换为2014-05-11 ?
函数taskDate(dateMilli) {
var d = (new Date(dateMilli) + ")。分割(' ');
D [2] = D [2] + ',';
返回[d[0], d[1], d[2], d[3]]。加入(' ');
}
var datemilli =日期。解析(' 2014年5月11日');
console.log (taskDate (datemilli));
上面的代码给了我相同的日期格式,2014年5月11日。我该如何解决这个问题?
format = function date2str(x, y) {
var z = {
M: x.getMonth() + 1,
d: x.getDate(),
h: x.getHours(),
m: x.getMinutes(),
s: x.getSeconds()
};
y = y.replace(/(M+|d+|h+|m+|s+)/g, function(v) {
return ((v.length > 1 ? "0" : "") + z[v.slice(-1)]).slice(-2)
});
return y.replace(/(y+)/g, function(v) {
return x.getFullYear().toString().slice(-v.length)
});
}
结果:
format(new Date('Sun May 11,2014'), 'yyyy-MM-dd')
"2014-05-11
你可以:
函数formatDate(日期){
var d = new Date(日期),
月= " + (d.getMonth() + 1) ",
day = " + d.getDate(),
year = d.g getfullyear ();
如果(月。长度< 2)
月= '0' +月;
如果一天。长度< 2)
Day = '0' + Day;
返回[年,月,日].join('-');
}
console.log(formatDate('Sun May 11,2014'));
使用的例子:
console.log(formatDate('Sun May 11,2014'));
输出:
2014-05-11
JSFiddle的演示:http://jsfiddle.net/abdulrauf6182012/2Frm3/
重新格式化日期字符串是相当简单的,例如。
var s = ' 2014年5月11日';
函数reformatDate(s) {
函数z(n){return ('0' + n).slice(-2)}
var月=[‘简’,2月,3月,4月,“可能”,“君”,
7月,8月,9月,10月,11月,12月的];
var b = s.split(/\W+/);
返回b[3] + '-' +
z (months.indexOf (b [1] .substr .toLowerCase (0, 3) ())) + '-' +
z (b [2]);
}
console.log (reformatDate (s));
格式化并从hashmap数据中查找最大值和最小值:
var obj = {"a":'2001-15-01', "b": '2001-12-02' , "c": '2001-1-03'};
function findMaxMinDate(obj){
let formatEncode = (id)=> { let s = id.split('-'); return `${s[0]+'-'+s[2]+'-'+s[1]}`}
let formatDecode = (id)=> { let s = id.split('/'); return `${s[2]+'-'+s[0]+'-'+s[1]}`}
let arr = Object.keys( obj ).map(( key )=> { return new Date(formatEncode(obj[key])); });
let min = new Date(Math.min.apply(null, arr)).toLocaleDateString();
let max = new Date(Math.max.apply(null, arr)).toLocaleDateString();
return {maxd: `${formatDecode(max)}`, mind:`${formatDecode(min)}`}
}
console.log(findMaxMinDate(obj));