日期选择器选项不起作用

时间:2015-11-06 00:39:27

标签: javascript jquery jquery-ui date datepicker

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

以下是代码

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

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

</script>

1 个答案:

答案 0 :(得分:1)

请查看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