如何在Jquery ui中禁用日期选择器(日历)中的过去日期?

时间:2015-07-07 22:02:52

标签: jquery jquery-ui jquery-ui-datepicker

我正在开发预订系统,我需要使用Jquery禁用过去的日期。我已经下载了JqueryUI并尝试使用beforeshowday函数来禁用过去的日期。

1 个答案:

答案 0 :(得分:0)

如果您正在使用de DatePicker,则可以按如下方式限制日期范围:

$( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D" });

-20表示20天前,maxDate为1个月,距离当天为10天。

为避免用户在当前日期之前选择任何日期:

$("#datepicker").datepicker({ minDate: 0 });

源:

https://jqueryui.com/datepicker/#min-max

https://api.jqueryui.com/datepicker/#entry-examples

<强>示例

$( "#datepicker" ).datepicker({ minDate: 0 });
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>datepicker demo</title>
  <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>
</head>
<body>     
    <div id="datepicker"></div>          
</body>
</html>