使用以下功能选择日期。工作正常。如何更改jquery中的datepicker颜色?
function DateControl(id){
$(id).datepicker({
changeMonth: true,
changeYear: true
});
}
答案 0 :(得分:12)
要更改datepicker的背景颜色,请尝试此
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
答案 1 :(得分:0)
用于更改datepicker的背景
.ui-datepicker
{
background: #999;
}
答案 2 :(得分:-1)
我认为设置datepicker样式的唯一方法是通过css。 自己设计样式或使用themeroller(http://jqueryui.com/themeroller/)。