ui.datepicker.js 日历当日期更改时自动更新另一个日历
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试类似
onchange="$('#Calenderb').val($('#Calendera').val())"
try something like
onchange="$('#Calenderb').val($('#Calendera').val())"