parseInt 对月份中的天数进行四舍五入
按如下方式计算的月份天数:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
parseFloat
和Math.round
如果您需要下一个整数,可以使用 Math.ceil
You can use
parseFloat
andMath.round
If you need the next integer you can use
Math.ceil
您对此进行了多少测试?对我来说似乎不是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 :)
不,不是!日期不是数字,
今天 + 3600 * 24
并不总是等于明天
。要找出一个月中的天数,请使用 Date 对象:
因此,
No, it is NOT! Dates are not numbers,
today + 3600 * 24
is not always equal totomorrow
.To find out days in the month use the following property of the Date object:
so,