0

私はui.datepicker.jsを使用しています

私の編集フォームには、独自の機能を持つ 2 つのカレンダーがあります。

Calendar A : 請求書が作成された日付です Calendar B : 次回の請求日です Bill_freq は、請求頻度 (1 か月、3 か月、6 か月、12 か月ごと) を設定するフィールドです。

私がやりたいことは、Calendar Aで日付が変更されたときに、 Calender 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 に答える