2

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

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

1 回答 1

8

文件说

//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]
});
于 2013-10-04T01:56:05.013 回答