2012-11-27 121 views

回答

0

管理基於默認和模式顏色一起破解它。

.ui-datepicker .ui-state-highlight { 
    border: 1px solid #d3d3d3; 
    background: #e6e6e6; 
    color: #363636;} 
.ui-datepicker .ui-state-active { 
    border: 1px solid #aaaaaa; 
    background: #518bdf url(images/ui-bg_glass_65_518bdf_1x400.png) 50% 50% repeat-x; 
    font-weight: normal; 
    color: #fff; 
    outline: none;} 

$.datepicker._gotoToday = function (id) { 
var inst = this._getInst($(id)[0]), 
$dp = inst.dpDiv; 
this._base_gotoToday(id); 
var tp_inst = this._get(inst, 'timepicker'); 
now = new Date(); 
var now_utc = new Date(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate(), now.getUTCHours(), now.getUTCMinutes(), now.getUTCSeconds()); 
this._setTime(inst, now_utc); 
$('.datetime:focus').datepicker('setDate', now_utc); 
// $('.ui-datepicker-today', $dp).click(); 

};

0

您可以通過設置輸入字段的值設置默認的日期。

​$("#picker").datepicker().val("12/11/2012");​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ 

不幸的是,我想你所指的是今天的日期,它以藍色突出顯示。我懷疑這是可定製的。

+0

Thx的回覆。我絕對不想設置該領域本身的價值。 – JaJ

相關問題