parseInt 对月份中的天数进行四舍五入

发布于 2024-12-25 04:08:31 字数 717 浏览 2 评论 0原文

按如下方式计算的月份天数:

var start = new Date(d.getFullYear(),d.getMonth(),1);
var end = new Date(d.getFullYear(),d.getMonth()+1,1);
var daysInCurMonth = parseInt((end-start)/(1000*60*60*24));

d 是实际日期,3 月份它的值(来自 FireBug 控制台):
日期 {Thu Mar 01 2012 00:00:00 GMT +0200}

parseInt((end-start)/(1000*60*60*24)) 结果30,但是

(end-start)/(1000*60*60*24)结果30.958333333333332

我预计四舍五入为31,使用parseInt()函数时。

Math.round((end-start)/(1000*60*60*24)) 结果 31,2012 年 3 月的结果是正确的。

可以依赖吗Math.round(),处理日期时?

Number of days in month calculated this way:

var start = new Date(d.getFullYear(),d.getMonth(),1);
var end = new Date(d.getFullYear(),d.getMonth()+1,1);
var daysInCurMonth = parseInt((end-start)/(1000*60*60*24));

d is actual Date,for March it holds value(from FireBug console):
Date {Thu Mar 01 2012 00:00:00 GMT+0200}

parseInt((end-start)/(1000*60*60*24)) results 30,but

(end-start)/(1000*60*60*24) results 30.958333333333332

I expect rounding to 31,when using parseInt() function.

Math.round((end-start)/(1000*60*60*24)) results 31,that is correct for March 2012.

Is it OK to rely on Math.round(),when dealing with dates?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝色星空 2025-01-01 04:08:31

您可以使用 parseFloatMath.round
如果您需要下一个整数,可以使用 Math.ceil

You can use parseFloat and Math.round
If you need the next integer you can use Math.ceil

似最初 2025-01-01 04:08:31

您对此进行了多少测试?对我来说似乎不是100%安全。

看看这个方法: http://snippets.dzone.com/posts/show/2099< /a>

我不久前是怎么做到的,效果很好:)

How far have you tested this? Does not seem 100% secure to me.

Take a look at this method: http://snippets.dzone.com/posts/show/2099

How I did it a while back, and it works very well :)

去了角落 2025-01-01 04:08:31

处理日期时可以依赖Math.round()吗?

不,不是!日期不是数字,今天 + 3600 * 24 并不总是等于明天

要找出一个月中的天数,请使用 Date 对象:

如果您使用 0 作为 dayValue,则日期将设置为上个月的最后一天

因此,

function daysInMonth(y, m)
{
    return new Date(y, m + 1, 0).getDate();
}


alert(daysInMonth(2011,1)) // 28
alert(daysInMonth(2012,1)) // 29

Is it OK to rely on Math.round(),when dealing with dates?

No, it is NOT! Dates are not numbers, today + 3600 * 24 is not always equal to tomorrow.

To find out days in the month use the following property of the Date object:

if you use 0 for dayValue, the date will be set to the last day of the previous month

so,

function daysInMonth(y, m)
{
    return new Date(y, m + 1, 0).getDate();
}


alert(daysInMonth(2011,1)) // 28
alert(daysInMonth(2012,1)) // 29
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文