1. 程式人生 > >常用時間日期處理總結

常用時間日期處理總結

時間處理是專案中不可缺少的,下面整理了一些常用時間處理的用法,記錄一下。

原文地址:https://www.cnblogs.com/liuhaorain/archive/2011/12/31/2308964.html

1.獲取當前時間

1 function getNowTime() {
2             return new Date();
3         }

2.時間與天數相加

1 function getTimeAddDays(time, days) {
2             return new Date(time.getTime() + days * 24 * 60 * 60 * 1000);
3         }

3.獲取並格式化日期:年-月-日

1  function getFormatDate(time) {
2             return time.getFullYear() + "-" + (time.getMonth() + 1) + "-" + time.getDate();
3         }

4.字串轉換為日期,字串格式:2011-11-20

function convertToDate(strings) {
return new Date(Date.parse(strings.replace("-", "/")));
        }

5.獲取並格式化星期

1  var WEEKDAYS = ["週日", "週一", "週二", "週三", "週四", "週五", "週六"]; //
星期2 3 function getFormatWeek(time) { 4 return WEEKDAYS[time.getDay()]; 5 }

6.時間比較

1  function compareTime(time1, time2) {
2             return time1.getTime() - time2.getTime();
3         }


7.計算兩個日期之間相隔的天數

function getDays(time1, tiem2){
var day = 24*60*60*1000;
return (time1.getTime() - time2.getTime())/day;
           }