javascript获取当前时间CurentTime

function CurentTime(){ 
    var now = new Date();
    
    var year = now.getFullYear();       //
    var month = now.getMonth() + 1;     //
    var day = now.getDate();            //
    
    var hh = now.getHours();            //
    var mm = now.getMinutes();          //
    var ss = now.getSeconds();          //
    
    var clock = year + "-";
    
    if(month < 10)
        clock += "0";
    
    clock += month + "-";
    
    if(day < 10)
        clock += "0";
        
    clock += day + " ";
    
    if(hh < 10)
        clock += "0";
        
    clock += hh + ":";
    if (mm < 10) 
        clock += '0'; 
 
    clock += mm + ":"; 
 
    if(ss < 10)
        clock += "0";
 
    clock +=ss;
    return(clock); 
}

得到的结果就是:2017-04-03 10:33:11

posted @ 2017-12-29 15:54  壁虎漫步.  阅读(611)  评论(0编辑  收藏  举报