我試過setDate
函數,它添加了ui-state-active
日期提到這很好。jQuery Datepicker突出顯示我給定的日期和刪除當前日期高亮顯示
我已經爲ui-state-active
寫過類,使得高亮顯示。
但是當前日期也顯示爲ui-state-hightlight
突出顯示。 我想刪除當前日期添加的這個類。
我猜這個突出顯示是通過日期選擇器函數的默認屬性發生的。
但它沒有,這樣寫的:
$(".datepickerfuture").datepicker({
changeMonth: true,
changeYear: true,
showOn: "both",
buttonImage: "../images/blank.gif",
buttonImageOnly: true,
minDate: new Date(),
});
你可以在jsfiddle.net上提供演示嗎? –