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.
我们如何防止日期选择器选择过去的日期?
我使用了以下内容:
$("#Date").datepicker({ minDate: '0' }); $("#Date").datepicker({ minDate: new Date() });
但我仍然可以选择过去的日期。
显然这是这样
$("#datepicker").datepicker({ minDate: 0 });
从 0 中删除引号
您是否尝试过使用mindate 和 maxdate 参数?
JSFiddle在这里。
查看文档并尝试一下。