我使用此代码显示今天按钮但不显示。我删除了注意然后显示今天按钮但不工作,在这种情况下,我可以选择预览年份是错误的。请建议
$("#ReturnDateM_flight").datepicker({
regional: '',
showButtonPanel: true,
isRTL: true,
numberOfMonths: 2,
todayHighlight: true,
minDate: 1,
dateFormat: "yy/mm/dd"
});
答案 0 :(得分:0)
试试这个,minDate:0和maxDate:0表示仅当前活动日期。
$("#ReturnDateM_flight").datepicker({
regional: '',
showButtonPanel: true,
isRTL: true,
numberOfMonths: 2,
todayHighlight: true,
minDate:0,
maxDate:0,
dateFormat: "yy/mm/d});
如果您想查看当前日期+下一个日期
,请尝试此操作$( "#ReturnDateM_flight" ).datepicker({
regional: '',
showButtonPanel: true,
isRTL: true,
numberOfMonths: 2,
todayHighlight: true,
minDate: new Date(),
dateFormat: "yy/mm/d"
});
答案 1 :(得分:0)
$(".datepicker").datepicker({
showOn: "button",
showButtonPanel: true,
buttonImage: buttonCalendar,
buttonImageOnly: true,
buttonText: ""
});
并在您拥有日历的页面中调用此js代码。
$.datepicker._gotoToday = function(id) {
$(id).datepicker('setDate', new Date()).datepicker('hide').blur();
};