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


JQuery UI Datepicker showButtonPanel用法及代碼示例


用法:

showButtonPanel
類型:Boolean
默認:false
是否在日曆下方顯示按鈕窗格。按鈕窗格包含兩個按鈕,一個鏈接到當前日期的 Today 按鈕和一個關閉 datepicker 的 Done 按鈕。可以分別使用 currentText closeText 選項自定義按鈕的文本。

代碼示例:

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

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

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

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

相關用法


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