标准时间转换为 年 月 日格式
var date = new Date();
var newDate = "";
var year = date.getFullYear(),
var month = date.getMonth() + 1 > 9 ? date.getMonth() + 1 : "0" + (date.getMonth() + 1),
var day = date.getDate() > 9 ? date.getDate() : "0" + date.getDate();
var hour = date.getHours() > 9 ? date.getHours() : "0" + date.getHours();
var min = date.getMinutes() > 9 ? date.getMinutes() : "0" + date.getMinutes();
var sec = date.getSeconds() > 9 ? date.getSeconds() : "0" + date.getSeconds();
newDate = year + "-" + month + "-" + day + "-"" + hour + "-"" + min + "-"" + sec;
console.log(newDate) // 年-月-日 时-分-秒
如果不需要时分秒,不写hour,min,sec即可