可能重复:
JQuery DatePicker 背景颜色
正在使用以下功能来选择日期。它工作正常。如何更改 jquery 中的日期选择器颜色?
function DateControl(id){
$(id).datepicker({
changeMonth: true,
changeYear: true
});
}
可能重复:
JQuery DatePicker 背景颜色
正在使用以下功能来选择日期。它工作正常。如何更改 jquery 中的日期选择器颜色?
function DateControl(id){
$(id).datepicker({
changeMonth: true,
changeYear: true
});
}
要更改日期选择器的背景颜色,请尝试此操作
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
用于更改日期选择器的背景
.ui-datepicker
{
background: #999;
}
我认为设置日期选择器样式的唯一方法是通过 css。设置您自己的样式或使用主题滚轮(http://jqueryui.com/themeroller/)。