我尝试了所有选择。 MaxDate,MinDate,Beforeshowday。但是它仍然无法正常工作。但是我的Datepicker显示良好并且运行良好。但是我无法在日期选择器中配置任何选项。任何帮助将不胜感激

这是下面的代码

<script type="text/javascript">
jQuery(document).ready(function(){

$('#datepicker').datepicker({
    beforeShowDay: $.datepicker.noWeekends,
    minDate: '0',
});
});

</script>

最佳答案

请从https://jqueryui.com/datepicker/#default签出代码示例

<!doctype html>
    <html lang="en">
    <head>
      <meta charset="utf-8">
      <title>jQuery UI Datepicker - Dates in other months</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>
      <link rel="stylesheet" href="/resources/demos/style.css">
      <script>
      $(function() {
        $( "#datepicker" ).datepicker({
          showOtherMonths: true,
          selectOtherMonths: true
        });
      });
      </script>
    </head>
    <body>

    <p>Date: <input type="text" id="datepicker"></p>


    </body>
    </html>


对于beforeShowDay,请检查JQuery DatePicker and beforeShowDay

10-07 14:28