ui.datepicker.js 日历当日期更改时自动更新另一个日历

发布于 2024-08-10 21:49:33 字数 291 浏览 5 评论 0原文

我正在使用 ui.datepicker.js

在我的编辑表单中,我有 2 个具有自己功能的日历。

日历 A :是创建发票的日期 日历 B :是下次计费的日期 Bill_freq 是设置计费频率的字段(每 1 个月、3 个月、6 个月、12 个月)

我想要做的是当日历 A 上的日期更改时, 日历 B 将自动更新为基于 Bill_freq 字段的日期。

感谢您的帮助!

I'm using ui.datepicker.js

In my edit form I have 2 calendars that have their own function.

Calendar A : is the date that the invoiced is created
Calendar B : is the date for next billing
Bill_freq is the field where is set the billing frequency (every 1 month, 3 months, 6 months, 12 months)

What I want to do is when date is changed on Calendar A,
Calender B will be updated automatically to a date base on Bill_freq field.

Thanks for your help!

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

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

发布评论

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

评论(2

关于从前 2024-08-17 21:49:33
$('#myCalendarA').datepicker({
   //other options here
   onSelect: function(dateText, inst) {  
       //pick the value you need
       var billFreq = $('#Bill_freq').val();  
       //do some calculation with dateText (selected date in CalA) and billFreq
       var newDate = dateText + billFreq;  //beware date calc in JS is hard to master
       //sets the date for Calendar B           
       $('#myCalendarB').datepicker('setDate', newDate) ;
   }
});
$('#myCalendarA').datepicker({
   //other options here
   onSelect: function(dateText, inst) {  
       //pick the value you need
       var billFreq = $('#Bill_freq').val();  
       //do some calculation with dateText (selected date in CalA) and billFreq
       var newDate = dateText + billFreq;  //beware date calc in JS is hard to master
       //sets the date for Calendar B           
       $('#myCalendarB').datepicker('setDate', newDate) ;
   }
});
天邊彩虹 2024-08-17 21:49:33

尝试类似 onchange="$('#Calenderb').val($('#Calendera').val())"

try something like onchange="$('#Calenderb').val($('#Calendera').val())"

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