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.
我正在使用 Bootsrap 3 (eonasdan-datetimepicker) 日期时间选择器。我想知道如何防止用户选择过去的时间。我发现文档并没有太多说明如何禁用过去的时间。
我建议设置minDate选项minDate: moment()
minDate: moment()
$('#datetimepicker1').datetimepicker({ minDate: moment() });
看到这个小提琴
尝试这个。它禁用过去的日期和时间。
$(function () { $('#datetimepicker').datetimepicker({ startDate: new Date() }); });
尝试使用
$('#datetimepicker1').datetimepicker({ minDate: new Date() });