javascript 獲得指定日期的臨近日期的方法

來源:互聯網
上載者:User

 

 1 //取得日期文字,返回YYYY-MM-DD
 2 function getDate(date)
 3 {
 4     var thisYear = date.getYear();
 5     var thisMonth = date.getMonth() + 1;
 6     //如果月份長度是一位則前面補0
 7     if(thisMonth<10) thisMonth = "0" + thisMonth;
 8     
 9     var thisDay = date.getDate();
10     //如果天的長度是一位則前面補0
11     if(thisDay<10) thisDay = "0" + thisDay;
12     
13     return thisYear + "-" + thisMonth + "-" + thisDay;
14 }
15 
16 //取得日期時間字串,返回YYYY-MM-DD HH:mm:SS
17 function getDateTime(date)
18 {
19     var thisYear = date.getYear();
20     var thisMonth = date.getMonth() + 1;
21     //如果月份長度是一位則前面補0
22     if(thisMonth<10) thisMonth = "0" + thisMonth;
23     
24     var thisDay = date.getDate();
25     //如果天的長度是一位則前面補0
26     if(thisDay<10) thisDay = "0" + thisDay;
27 
28     var thisHour = date.getHours();
29     //如果小時間長度度是一位則前面補0
30     if(thisHour<10) thisHour = "0" + thisHour;
31     
32     var thisMinute = date.getMinutes();
33     //如果分鐘長度是一位則前面補0
34     if(thisMinute<10) thisMinute = "0" + thisMinute;
35     
36     var thisSecond = date.getSeconds();
37     //如果分鐘長度是一位則前面補0
38     if(thisSecond<10) thisSecond = "0" + thisSecond;
39     
40     return thisYear + "-" + thisMonth + "-" + thisDay + " " + thisHour + ":" + thisMinute + ":" + thisSecond;
41 }
42 
43 //根據日期文字產生日期對象,日期文字格式為YYYY-MM-DD
44 function setDate(strDate)
45 {
46     var aDate = strDate.split("-");
47     return new Date(aDate[0],aDate[1]-1,aDate[2]);
48 }
49 
50 //獲得指定日期的臨近日期
51 //strDate:指定的日期,格式為yyyy-mm-dd  nDay:與指定日期相鄰的天數 1為明天 -1為昨天
52 function getNearDay(strDate,nDay)
53 {
54     try
55     {
56         var oDate = setDate(strDate);
57         var newDate = new Date(oDate.valueOf() + nDay*24*60*60*1000);
58         return getDate(newDate);
59     }
60     catch(ex)
61     {
62         return "error";
63     }
64 }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.