具有完成和清除按钮的jQuery Datepicker

时间:2018-09-22 18:36:17

标签: jquery-ui-datepicker

我正在使用Jquery Datepicker。我正在使用MM-yy格式(文本框禁用状态)。在日期选择器中,完成或清除中的任何一个按钮都可以使用。 我想在日期选择器中显示“完成”和“清除”按钮都处于“活动”状态。

请检查图片

enter image description here enter image description here

请帮助我解决此问题。

先谢谢了。

1 个答案:

答案 0 :(得分:0)

我假设您指的是“今日”按钮显示为灰色的事实。

为了避免这种情况,您将不得不覆盖.css

Simpy将以下内容添加到您的.css文件中,即

.ui-datepicker div.ui-datepicker-buttonpane button.ui-datepicker-current {
    font-weight: bold;
    opacity: 1;
}