我正在使用jQuery UI的datepicker(http://docs.jquery.com/UI/Datepicker)。馬克在jQuery UI datepicker中選擇日期
聽起來好像應該可以通過提供beforeShowDay
函數來標記某些天(http://docs.jquery.com/UI/Datepicker#event-beforeShowDay)。但我無法爲此獲得CSS。我想讓背景變綠一些日子。
這是JavaScript我有這遠:
$(function() {
$('.date').datepicker({
dateFormat: 'yy-mm-dd',
firstDay: '1',
showOtherMonths: 'true',
beforeShowDay: daysToMark
});
});
function daysToMark(date) {
if (date.getDate() < 15) {
return [true, 'markedDay', ""];
}
return [true, '', ""];
}
這是CSS:
.markedDay {
background-color: green;
}
但沒有什麼變化。我究竟做錯了什麼?
這是我需要幫助的CSS調整。將相同樣式表添加到「.markedDay a」不會改變任何內容。 – Tobbe 2010-10-23 01:02:59
+1爲偉大的jsfiddle.net鏈接! – Tobbe 2010-10-23 01:14:05