Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据下拉列表显示 jquery datepicker。例如,如果我选择 6 月,它只显示 6 月,其余时间应该冻结。!
您可以指定选项来控制这种行为,即使用minDateand maxDate,也许:
minDate
maxDate
$(".date-selector").datepicker({ minDate: new Date(2013, 7, 1), maxDate: new Date(2013, 7, 31) });
使用 changeMonth 参数打开月份的内置下拉菜单。这对你来说可能是一个更好的方法。
http://jqueryui.com/datepicker/#dropdown-month-year