gpt4 book ai didi

javascript - 如何禁止点击日历中的月份

转载 作者:行者123 更新时间:2023-12-03 02:52:21 25 4
gpt4 key购买 nike

正如您在图像上看到的,我想禁用 2017 年 12 月(黑框)上的点击。我怎样才能做到这一点?

enter image description here

我的日历 javascript 函数。

$('#datepicker').datepicker({
changeYear: true,
multidate: true,
maxViewMode: 0,
startDate: today,
})

最佳答案

也许你可以使用changeMonth选项如下:

$('#datepicker').datepicker({
changeYear: true,
changeMonth: false,
multidate: true,
maxViewMode: 0,
startDate: new Date(),
});

$('#datepicker2').datepicker({
changeYear: true,
changeMonth: true,
multidate: true,
maxViewMode: 0,
startDate: new Date(),
});
input {
width: 25%;
margin: 1%;
}
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>

<input type="text" id="datepicker" placeholder="You can't change my month !" />
<input type="text" id="datepicker2" placeholder="You can change my month !" />

关于javascript - 如何禁止点击日历中的月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47791181/

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