我想知道如何在以下jquery多个datepicker中更改突出显示日期的样式。
<input id="datePick" type="text"/>
$('#datePick').multiDatesPicker();
请检查:http://jsfiddle.net/3t4j9/
答案 0 :(得分:1)
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
background: #red none;
color: white;
}
答案 1 :(得分:1)
当选择任何日期时,“ui-state-highlight”类将添加到元素中。我们可以将样式应用于该特定类,如下所示:
.ui-datepicker-calendar td.ui-state-highlight {
// New styles here
}
.ui-datepicker-calendar td.ui-state-highlight a {
// New styles here
}
答案 2 :(得分:1)
Demo Read Here on the bottom of the page Tips
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
background: #743620;
color: white;
}