你好...我的 JQuery 日期选择器范围有一个小问题

发布于 2024-11-11 17:14:04 字数 111 浏览 3 评论 0原文

我有两个日期选择器。第一个是“开始日期或开始日期”,第二个是“结束日期或结束日期”。我需要做的是能够在开始日期上添加一年,然后在结束日期中自动显示该值。我对 Jquery 很陌生,需要帮助。提前一百万致谢..

I have two date pickers..The first is the "From or Starting Date" and the second is the " TO or Ending Date". What i need to do is to be able to add one year to the Starting date and then automatically display that value in the Ending Date. I am quite new to Jquery and need help with it. Thanks a million in advance..

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

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

发布评论

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

评论(1

遮云壑 2024-11-18 17:14:04
$('#FROMpicker').datepicker({
   onSelect: function(dateText, inst) {
     $('#TOpicker').datepicker("setDate", $(this).datepicker("getDate"))
                   .datepicker("setDate", "+1y");
   }
});

此页面的底部,请参阅“事件”和“方法”选项卡以获取说明。

$('#FROMpicker').datepicker({
   onSelect: function(dateText, inst) {
     $('#TOpicker').datepicker("setDate", $(this).datepicker("getDate"))
                   .datepicker("setDate", "+1y");
   }
});

At the bottom of this page see the "Events" and "Methods" tabs for explanations.

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