gpt4 book ai didi

Datepicker Materializecss 禁用天函数

转载 作者:行者123 更新时间:2023-12-04 02:58:48 29 4
gpt4 key购买 nike

我正在使用来自 materializecss 的日期选择器,我需要禁用所有天,除非星期一,在我使用的其他插件上 'daysOfWeekDisabled'参数,但在这种情况下,我必须使用 disableDayFn: function(){},当我插入参数时,所有日历都被禁用。这是一个例子

$('#initCourse').datepicker({
firstDay: 1,
minDate: new Date(),
format: "dd.mm.yyyy",
disableDayFn: function(){
return disabled = '0, 2, 3, 4, 5, 6'
}
});

有什么想法吗?提前致谢

最佳答案

它工作正常,但我使用另一种方式以防您需要禁用一个或多个日期

disableDayFn:function (date) {

let disableListDate = [new Date('2018,12,5').toDateString(),new Date('2018,12,6').toDateString()];

if(disableListDate.includes(date.toDateString())) {
return true
}else{
return false
}

}

关于Datepicker Materializecss 禁用天函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51205600/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com