有没有办法只显示 jquery 日期选择器一个月

Is there any way to show the jquery datepicker for only a single month

如何显示日期选择器或如何限制它只在指定的月份显示?让我们只说 11 月或 2 月。

这里你只能在JQuery日期选择器中看到一个月:

以下代码:

<html>
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
  <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
  <script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
  <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
<script>
 $(function() {
   $( "#datepicker" ).datepicker();
 });
</script>
</head>
  <body>
    <p>Date: <input type="text" id="datepicker"></p>
  </body>
</html>

在此处显示不同的选项:

http://api.jqueryui.com/datepicker/

您可以使用 defaultDate 设置默认月份。 http://jqueryui.com/datepicker/

$(function() {
var d = new Date();
d.setMonth(1);  //Defalt month feburary
$( "#datepicker" ).datepicker({
       defaultDate: d
    });
});

Demo