js获取当前日期时间 YYYY-MM-dd HH:MM:SS

  • Post author:
  • Post category:其他




js获取当前日期时间 YYYY-MM-dd HH:MM:SS

function getCurrentTime() {
    var date = new Date();//当前时间
    var year = date.getFullYear() //年
    var month = repair(date.getMonth() + 1);//月
    var day = repair(date.getDate());//日
    var hour = repair(date.getHours());//时
    var minute = repair(date.getMinutes());//分
    var second = repair(date.getSeconds());//秒
    
    //当前时间 
    var curTime = year + "-" + month + "-" + day
            + " " + hour + ":" + minute + ":" + second;
    return curTime;
}
 
//若是小于10就加个0
 
function repair(i){
    if (i >= 0 && i <= 9) {
        return "0" + i;
    } else {
        return i;
    }
}



版权声明:本文为qq_45479398原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。