gpt4 book ai didi

jquery - 多日期选择器 : exclude weekends from pickableRange and adjustRangeToDisabled

转载 作者:行者123 更新时间:2023-12-01 00:55:49 24 4
gpt4 key购买 nike

我正在使用 jquery multidatespicker 我必须定义选择第一个日期后允许的日期范围。

我需要从所有 future 日期中排除周末。但是,pickableRange 不会跳过使用 beforeShowDay 禁用的周末。

我还尝试添加addDisabledDates,但在数组中添加所有周末日期是不可行的。

这是我一直在尝试的代码。

$('#id').multiDatesPicker({
pickableRange: 15,
adjustRangeToDisabled: true,
beforeShowDay: $.datepicker.noWeekends,
addDisabledDates : ['array containing all weekends and holidays'] // not feasible option
})

请帮我解决这个问题..

最佳答案

$('#id').multiDatesPicker({
beforeShowDay: disableSpecificWeekDays,
// For disabling all "Sundays and saturday"
dateFormat: "d/m/yy",
maxDate: "+3m",
minDate: "-1m",
multidate: true,
});

function disableSpecificWeekDays(date) {
var theday = date.getDate() + '/' +
(date.getMonth() + 1) + '/' +date.getFullYear();
var day = date.getDay();
return [day != 0 && day != 6];
}

在这里我们可以指定一个禁用周末的方法。请尝试这个。

关于jquery - 多日期选择器 : exclude weekends from pickableRange and adjustRangeToDisabled,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39166763/

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