js日期時間補零的小例子


function getNowFormatDate()
        {
           var day = new Date();
           var Year = 0;
           var Month = 0;
           var Day = 0;
           var CurrentDate = "";
           //初始化時間
           //Year       = day.getYear();//有火狐下2008年顯示108的bug
           Year       = day.getFullYear();//ie火狐下都可以
           Month      = day.getMonth()+1;
           Day        = day.getDate();
           CurrentDate += Year + "-";
           if (Month >= 10 ){
            CurrentDate += Month + "-";
           }else {
            CurrentDate += "0" + Month + "-";
           }
           if (Day >= 10 ){
            CurrentDate += Day ;
           } else {
            CurrentDate += "0" + Day ;
           }
           return CurrentDate;
        }
 
//獲取的時間就會補零
var nowdate = getNowFormatDate();

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM