gpt4 book ai didi

javascript - 日期选择器突出显示日期(如果不可用)

转载 作者:行者123 更新时间:2023-11-28 07:13:17 25 4
gpt4 key购买 nike

我有这个在线预订,并且遇到了这个问题,有没有办法可以在日期选择器上突出显示不可用的日期?假设我已在数据库中插入了日期。这是我的日期选择器代码。

<input type="text" name="pick-up-date" id="pick-up-date" class="form-control datepicker" placeholder="mm-dd-yyyy">

这是屏幕截图:

enter image description here

最佳答案

使用 jQuery 中的 beforeShowDay() 函数 check this

例如,类似这样的事情,

var datesToDisable = ["2015-01-07","2015-17-07","2015-21-07"]; //you have to fetch the dates and put em in an array and wh7atever the format is.

$('#pick-up-date').datepicker({
beforeShowDay: function(date){
var string = jQuery.datepicker.formatDate('dd-mm-yy', date);
return [ datesToDisable.indexOf(string) == -1 ]
}
});

应该可以解决问题!

关于javascript - 日期选择器突出显示日期(如果不可用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31091621/

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