我通过pickadate.js设置了一个简单的日历。如何禁用日历上的每个星期日?我注意到它有一个disable:[]
,但不知道如何指定一天
$('.datepicker').pickadate({
weekdaysShort: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
showMonthsShort: true
})
答案 0 :(得分: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]
});