我有一个通过pickadate.js设置的简单日历。如何禁用日历中的每个星期日?我注意到它有一个disable:[],但不确定如何指定日期

$('.datepicker').pickadate({
weekdaysShort: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
showMonthsShort: true
})

最佳答案

文件说

//Using integers representing days of the week (from 1 to 7):
$('.datepicker').pickadate({
    disable: [
        1, 4, 7
    ]
})

因此,如果您想禁用星期日,则:
 $('.datepicker').pickadate({
     weekdaysShort: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
     showMonthsShort: true,
     disable: [7]
});

09-16 17:19