var date='2022-10-11 17:00:08';
//日期拆分
function date_sort(date){
var time={};
var f = date.split(' ', 2);//过滤空格
if(f[0].search("/") != -1){//判断是否包含-
var d = (f[0] ? f[0] : '').split('/', 3);//过滤-
}else {
var d = (f[0] ? f[0] : '').split('-', 3);//过滤-
}
time.year=parseInt(d[0]);//转换成整数形式的原因是 过滤掉 月份和时分秒的首位补零的情况
time.month=parseInt(d[1]);
time.day=parseInt(d[2]);
var t = (f[1] ? f[1] : '').split(':', 3);//过滤:
time.hour=parseInt(t[0]);
time.minute=parseInt(t[1]);
time.second=parseInt(t[2]);
return time;
}
console.log(date_sort(date));
day: 11
hour: 17
minute: 0
month: 10
second: 8
year: 2022