<link rel="stylesheet" href="//code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.3/jquery-ui.js"></script>
$("#datepicker").datepicker(
{
changeMonth: true,
changeYear: true,
dateFormat: 'dd.mm.yy',
showButtonPanel: true,
gotoCurrent: true
});
$.datepicker._gotoToday = function (id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
};
我今天按钮在jquery datepicker.Today按钮是不同的颜色关闭按钮是不同的颜色。今天按钮看起来像浅银色和关闭按钮似乎是暗银色。
我如何展示&#34;今天&#34;按钮暗银(与关闭按钮相同)?