我想知道如何設置datePicker
中日期的背景顏色;我遵循了很多教程,但沒有得到任何結果。在jQuery日期選擇器中更改特定一天的背景顏色
我有這個日期選擇器:
<div id="datepicker"></div>
我想知道如何設置datePicker
中日期的背景顏色;我遵循了很多教程,但沒有得到任何結果。在jQuery日期選擇器中更改特定一天的背景顏色
我有這個日期選擇器:
<div id="datepicker"></div>
萬一貓鼬的鏈接變壞某一天最好能在這裏發表在計算器上充分答案:
的jQuery:
$(document).ready(function() {
var SelectedDates = {};
SelectedDates[new Date('04/05/2016')] = new Date('04/05/2016');
SelectedDates[new Date('05/04/2016')] = new Date('05/04/2016');
SelectedDates[new Date('06/06/2016')] = new Date('06/06/2016');
$('#txtDate').datepicker({
beforeShowDay: function(date) {
var Highlight = SelectedDates[date];
if (Highlight) {
return [true, "Highlighted", Highlight];
}
else {
return [true, '', ''];
}
}
});
});
Css:
body
{
font-family:Arial;
font-size : 10pt;
padding:5px;
}
.Highlighted a{
background-color : Green !important;
background-image :none !important;
color: White !important;
font-weight:bold !important;
font-size: 12pt;
}
HTML:
<input type='text' id='txtDate' />
小提琴:http://jsfiddle.net/jquerybyexample/cqf9d/?utm_source=website&utm_medium=embed&utm_campaign=cqf9d
謝謝...它完美 –
上面的鏈接網頁被屏蔽。張貼另一個更好的聯繫有... –
不知道爲什麼它不適合你...仍然適用於我,根網站是:http://www.jquerybyexample.net/ – MongooseNX