0

我正在使用ui.datepicker.js

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

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

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

谢谢你的帮助!

4

2 回答 2

1
$('#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) ;
   }
});
于 2009-11-10T16:01:48.993 回答
0

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

于 2009-11-10T15:57:36.887 回答