你有两个选择:
选项 A) 在您的日历中标记为“活动”,仅当您单击输入时。
JS:
$('input.datepicker').datepicker(
{
changeMonth: false,
changeYear: false,
beforeShow: function(input, instance) {
$(input).datepicker('setDate', new Date());
}
}
);
CSS:
div.ui-datepicker table.ui-datepicker-calendar .ui-state-active,
div.ui-datepicker table.ui-datepicker-calendar .ui-widget-content .ui-state-active {
background: #1ABC9C;
border-radius: 50%;
color: #fff;
cursor: pointer;
display: inline-block;
width: 24px; height: 24px;
}
选项 B)默认输入今天。您必须首先填充 datepicker 。
$("input.datepicker").datepicker().datepicker("setDate", new Date());