当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery UI Datepicker showOtherMonths用法及代码示例


用法:

showOtherMonths
类型:Boolean
默认:false
是否在当前月份的开始或结束时显示其他月份的日期(不可选择)。要使这些日子可选,请使用 selectOtherMonths 选项。

代码示例:

使用指定的 showOtherMonths 选项初始化日期选择器:

$( ".selector" ).datepicker({
  showOtherMonths: true
});

初始化后获取或设置showOtherMonths选项:

// Getter
var showOtherMonths = $( ".selector" ).datepicker( "option", "showOtherMonths" );
 
// Setter
$( ".selector" ).datepicker( "option", "showOtherMonths", true );

相关用法


注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Datepicker showOtherMonths。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。