js格式化当前时间代码

 

function getDate(){
    var today = new Date();  
    var y = today.getFullYear();  
    var M = today.getMonth() + 1; //返回值是0(一月) 到 11(十二月),实际月份要加1 
    var d = today.getDate();  
    var h = today.getHours();  
    var m = today.getMinutes();  
    var s = today.getSeconds();              
    M = checkTime(M);
    d = checkTime(d);  
    h = checkTime(h);   
    m = checkTime(m); 
    s = checkTime(s);  
    function checkTime(i) {  
        //判断是否是个位数,是的话前面加0
        if (i < 10) {  
            i = "0" + i;  
        }  
        return i;  
    }
    return y + '-' + M + '-' + d + ' ' + h + ':' + m + ':' + s; 
 } 

 

你可能感兴趣的:(HTML,JavaScript,格式化,时间)