使用 Javascript 进行日期计算

发布于 2024-12-06 03:22:17 字数 119 浏览 2 评论 0原文

我在 js 中计算日期时遇到问题。我的表单中有日历选择器,可以选择 mm/dd/yy 格式的开始日期。使用该开始日期值,我想将增量日期插入最多 2 周的行中。

请问有人可以帮我吗?谢谢。

丹尼

I am having problem to calculating the date in js. I have calendar picker in my form to pick a start date in the format of mm/dd/yy. With that start date value, I want to insert the incremental date into the rows up to 2 wks.

Plz, can anyone help me on this? thank you.

Danny

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

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

发布评论

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

评论(1

萌逼全场 2024-12-13 03:22:17

不知道这是否是您想要的,但是。

var date = new Date(year, month, day ); 
date = date.setDate( date.getDate() + 14 ); // add 14 days to the date 

Don't know if this is what you want but.

var date = new Date(year, month, day ); 
date = date.setDate( date.getDate() + 14 ); // add 14 days to the date 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文