我遇到了JQuery datepicker的問題。當我嘗試使用月份選擇器時,我得到的選擇是我選擇月份之前的一個月。你可以明白我的意思是:選擇後顯示-1個月後的JQuery datepicker下拉菜單
這裏是我使用的代碼:
<input id="StartDate" />
$("#StartDate").datepicker({
defaultDate: "0",
changeMonth: true,
changeYear: true,
numberOfMonths: 1,
showCurrentAtPos: 1,
onClose: function (selectedDate) {
$("#StartDate").datepicker("option", "minDate", selectedDate);
}
});
如果在showCurrentAtPos添加:1和NUMBEROFMONTHS:3的結果將是你的起始月在中心月(當月),然後,當您使用下拉月將不再正常工作。看起來showCurrentAtPos有一個bug。 – dj22
猜猜這個問題已經出現一段時間了。 http://bugs.jqueryui.com/ticket/6225 – RMBL21