Loop through a date range with JavaScript(使用 JavaScript 循环遍历日期范围)
问题描述
给定两个 Date()
对象,其中一个小于另一个,我如何在日期之间每天循环?
Given two Date()
objects, where one is less than the other, how do I loop every day between the dates?
for(loopDate = startDate; loopDate < endDate; loopDate += 1)
{
}
这种循环行得通吗?但是我怎样才能在循环计数器中增加一天呢?
Would this sort of loop work? But how can I add one day to the loop counter?
谢谢!
推荐答案
这里有一种方法,通过使用添加一天导致日期在必要时滚动到下个月的方式来实现,并且不会乱用毫秒.夏令时也不是问题.
Here's a way to do it by making use of the way adding one day causes the date to roll over to the next month if necessary, and without messing around with milliseconds. Daylight savings aren't an issue either.
var now = new Date();
var daysOfYear = [];
for (var d = new Date(2012, 0, 1); d <= now; d.setDate(d.getDate() + 1)) {
daysOfYear.push(new Date(d));
}
请注意,如果您想存储日期,则需要创建一个新日期(如上使用 new Date(d)
),否则您将结束每个存储的日期都是循环中 d
的最终值.
Note that if you want to store the date, you'll need to make a new one (as above with new Date(d)
), or else you'll end up with every stored date being the final value of d
in the loop.
这篇关于使用 JavaScript 循环遍历日期范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 JavaScript 循环遍历日期范围
基础教程推荐
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01