6
我不想在我的JQuery UI日期選擇器上顯示「今日」突出顯示。 gotoCurrent選項旨在突出顯示移動到所選日期。這會很好。 但是,將gotoCurrent設置爲true將不起作用。我究竟做錯了什麼?JQuery UI日期選擇器gotoCurrent不起作用
我不想在我的JQuery UI日期選擇器上顯示「今日」突出顯示。 gotoCurrent選項旨在突出顯示移動到所選日期。這會很好。 但是,將gotoCurrent設置爲true將不起作用。我究竟做錯了什麼?JQuery UI日期選擇器gotoCurrent不起作用
gotoCurrent控制ButtonPanel中「今日」按鈕的行爲。
select a date != today's date, click this button:
if gotoCurrent = false -> today's date is shown
if gotoCurrent = true -> selected date is shown
禁用今天的高亮:
搜索:在文件ui.datepicker.js
(printDate.getTime() == today.getTime() ? ' ui-state-highlight' : '') +
,並刪除亮點類(或刪除整條生產線):
(printDate.getTime() == today.getTime() ? '' : '') +
你應該得到你想要的。
好吧,這是有道理的。我怎樣才能阻止「今天」突出顯示? – 2009-09-09 12:21:46
@Andrew - 你應該能夠在當天刪除CSS類 – 2009-09-09 13:51:27
謝謝你的答案。但是,我使用Google託管的JQuery庫 - 因此對腳本的修改不是一種選擇。我想我應該用JQuery UI提交功能請求。 – 2009-09-11 11:53:09