當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery UI Datepicker selectOtherMonths用法及代碼示例


用法:

selectOtherMonths
類型:Boolean
默認:false
可選擇顯示當前月份之前或之後的其他月份中的天數。這僅適用於 showOtherMonths 選項設置為 true 的情況。

代碼示例:

使用指定的 selectOtherMonths 選項初始化日期選擇器:

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

初始化後獲取或設置selectOtherMonths選項:

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

相關用法


注:本文由純淨天空篩選整理自jqueryui.com大神的英文原創作品 Datepicker selectOtherMonths。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。