gpt4 book ai didi

javascript - 在 jQuery datetimepicker 中禁用特定日期之后的所有日期

转载 作者:行者123 更新时间:2023-11-29 21:01:31 25 4
gpt4 key购买 nike

$(function() {
$("#datepicker").datepicker({
maxDate: new Date()
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>

<link data-require="jqueryui@*" data-semver="1.10.0" rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.0/css/smoothness/jquery-ui-1.10.0.custom.min.css" />

<script data-require="jqueryui@*" data-semver="1.10.0" src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.0/jquery-ui.js"></script>
<p>Date: <input type="text" id="datepicker" /></p>

我有一个 jquery 日期选择器,我希望最大日期为 2017 年 9 月 29 日。现在,这是今天的约会。任何帮助将不胜感激。

谢谢。

最佳答案

这会起作用

$(function() {
$("#datepicker").datepicker({
maxDate: new Date(2017, 8, 29) //you can provide any future date here
});
});

例子:-

$( "#datepicker" ).datepicker({
maxDate: new Date(2017, 8, 29)
});
<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.js"></script>
<input type="text" id="datepicker">

关于javascript - 在 jQuery datetimepicker 中禁用特定日期之后的所有日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46232417/

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