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

相关文章:

  • 2021-12-19
  • 2021-06-15
  • 2021-12-08
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2022-12-23
  • 2021-11-04
  • 2021-12-14
  • 2022-12-23
相关资源
相似解决方案