我刚刚开始使用jQuery UI的datepicker,我正在寻找一种方法来启用仅在数据数组中的日期...我尝试了所有内容但它似乎没有禁用任何日期。我检查了数据数组,如果我使用console.log(data)
:
["2017-04-28", "2017-05-19", "2017-04-03", "2017-04-05", "2017-04-07", "2017-04-04", "2017-04-12"]
$.ajax({
url: '/getDoctorsAppointments/'+doctor_id+'/',
type: "GET",
dataType: "json",
success:function(data) {
// enable only dates in the "data" array
}
});
我是否可以在datepicker中选择如何在数组中实现仅日期的任何想法?