gpt4 book ai didi

jquery - 禁用日历中的所有日期

转载 作者:行者123 更新时间:2023-12-01 02:53:33 25 4
gpt4 key购买 nike

有没有办法可以禁用日历中的所有日期?目前日历的构造如下:

$('.date-picker-field').datepicker( {
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
changeYear: true,
});

这将显示一个包含所有启用日期的日历。我想显示,但禁用所有日期。

最佳答案

您可以使用 beforeShowDay 方法并返回具有 false 值的数组:

$("#datepicker").datepicker({
beforeShowDay:function(date){
return [false, ''];
}
});
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<input type="text" id="datepicker">

关于jquery - 禁用日历中的所有日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34351674/

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