js計算指定日期幾天前或者幾天後的日期

antzone發表於2017-04-12

本章節分享一段程式碼例項,它實現了計算指定日期幾天前或者幾天後的日期是什麼的功能。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
function func(date, num) {
  //可以加上錯誤處理
  var odate = new Date(date)
  odate = odate.valueOf()
  odate = odate - num * 24 * 60 * 60 * 1000
  odate = new Date(odate)
  console.log(odate.getFullYear() + "年" + (odate.getMonth() + 1) + "月" + odate.getDate() + "日")
}
func("12/1/2016", 2)

上面的程式碼實現了我們的要求,程式碼非常的簡單,這裡就不多介紹了。


相關文章