2

我目前安装了 pickadate.js。我试图禁用除 3 之外的所有日子。

我使用 onOpen 事件来阻止这些日子,但是无论我以哪种方式应用它,

我似乎唯一能做的就是阻止所有日子,使用 disable : true ,当我尝试明确应用允许的日子时,它会阻止它们。

任何关于如何做到这一点的想法都非常感谢

$('input.datepicker').pickadate({
    today : '',
    clear : 'Clear',
    format : 'dd/mm/yyyy',
    clear: 'Clear selection',
    labelMonthNext: 'Go to the next month',
    labelMonthPrev: 'Go to the previous month',
    labelMonthSelect: 'Pick a month from the dropdown',
    labelYearSelect: 'Pick a year from the dropdown',
    editable : false,
    // disable the other days in the calendar except this one. 1 - 7 are the way days are dealt with
    onOpen : function(){ 
        var picker = this ;
        var current = picker.get('id')
        var allowed_days = $('#' + current).attr('data-disabled-days');
            disabled_days = JSON.parse("[" + allowed_days + "]");                                   
            picker.set('disable',disabled_days);
    }
});
4

0 回答 0