現在用的是folllowing功能挑date.It是工作fine.How改變的jQuery的日期選擇器的顏色?
function DateControl(id)
{
$(id).datepicker({
changeMonth: true,
changeYear: true
});
}
現在用的是folllowing功能挑date.It是工作fine.How改變的jQuery的日期選擇器的顏色?
function DateControl(id)
{
$(id).datepicker({
changeMonth: true,
changeYear: true
});
}
要更改日期選擇器的背景顏色試試這個
<style type="text/css">
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
</style>
我認爲風格你日期選擇器的唯一方法是通過CSS。 風格自己或使用美樂家()。
要更改日期選擇器
.ui-datepicker
{
background: #999;
}
圍棋bachground到http://jqueryui.com/和創建主題。 – ThePower