var time = new Date(); //直接用 new Date(时间戳) 格式转化获得当前时间 //再利用拼接正则等手段转化为yyyy-MM-dd hh:mm:ss 格式 var times = time.toLocaleDateString().replace(/\//g, "-") + " " + time.toTimeString().substr(0, 8); //2019-1-13 14:16:33