選択できるのは、任意の月の日付1と16のみです。他のすべての日付は無効にする必要があります。助けてください
$(closure.el).find('#listcmd_invoices .add .invoice-from-date-input')
.datepicker({
changeYear: true,
showAnim: 'slide',
changeMonth : true,
yearRange : "Y:+2Y",
beforeShowDay: function(date){
return [date.getDate() == 16 && date.getDate() == 1,""]
}
});