答案 0 :(得分:2)
HTML5支持min
和max
属性。
播放下面的示例,您将了解它的工作原理!
Enter a date before 2000-12-21:
<input type="date" name="example1" max="2000-12-20"><br>
Enter a date after 2000-12-21:
<input type="date" name="example2" min="2000-12-22"><br>
只需使用PHP自动将日期选择器更新为当前日期:
<input type="date" name="example3" min="<?= date('Y-m-d') ?>">
注意:Internet Explorer 9(及更低版本)不支持此功能。