次の月 (または前の月) をクリックしたときに、日付ピッカーの最初に表示された日付を取得したいと考えています。日付ピッカーは 2 か月 (11 月と 12 月など) を示しており、次の月をクリックすると、最初の日付を次のような変数として関数をトリガーしたいと考えています。
$(document).on('click','.ui-datepicker-next',function(){
test(first_date);
});
$(function() {
$( "#vak_kalender" ).datepicker({
numberOfMonths: 2,
minDate: new Date(),
maxDate: new Date(volgend_jaar, 24,0),
beforeShowDay:function highlightDays(date) {
var timestamp = new Date(Date.UTC(date.getFullYear(),date.getMonth(),date.getDate()));
var timestamp = timestamp/1000;
if ($.inArray(timestamp, verhuurt) != -1){
return [false,'verhuurt'];
}
else if ($.inArray(timestamp, gesloten) != -1) {
return [false,'gesloten'];
}
else if ($.inArray(timestamp, wisseldagen) != -1) {
return [true,'wisseldag'];
}
else{return [true, 'beschikbaar'];}
},
showWeek: true
});
});