有没有办法只显示jquery datepicker一个月

时间:2015-01-01 05:20:51

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

如何显示日期选择器或如何限制它仅在指定月份显示?可以说只适用于11月或2月。

2 个答案:

答案 0 :(得分:2)

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

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

<强> Demo

答案 1 :(得分:1)

在这里你只能在JQuery datepicker中看到一个月:

以下代码:

<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/