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


JQuery UI Datepicker gotoCurrent用法及代碼示例


用法:

gotoCurrent
類型:Boolean
默認:false
true 時,當前日期鏈接移動到當前選定的日期而不是今天。

代碼示例:

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

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

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

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

相關用法


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