欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js日期時間補零的小例子

 更新時間:2013年03月05日 14:11:16   作者:  
js日期時間補零的小例子,需要的朋友可以參考一下

復(fù)制代碼 代碼如下:

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();

相關(guān)文章

最新評論