jquery datepicker-月选择(没有下拉菜单)

时间:2013-08-05 05:52:12

标签: jquery jquery-ui datepicker calendarextender

我使用jquery datepickerhttp://jqueryui.com/datepicker/#method-dialog

我希望可以选择月份和年份 我定义了这个:

 $("input").datepicker({  
             changeMonth: true,
             changeYear: true,
        });

但我真的很讨厌datepicker的下拉列表 我希望可以选择ajaxToolkit: CalendarExtender

enter image description here

中的月份和年份

有可能??

1 个答案:

答案 0 :(得分:1)

正如@koala_dev所提到的,您可以使用 Datepicker for Bootstrap 来实现它。

<强>更新

$("#datepicker").datepicker({
  format: " m-yyyy",
  viewMode: "months",
  minViewMode: "months"
});
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.0/css/bootstrap-datepicker.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.0/js/bootstrap-datepicker.js"></script>
<input type="text" id="datepicker" />