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.
我需要验证输入表单的数据是否在 1940 年 1 月 1 日之前。我分别拥有用户的日、月和年值,但我不知道如何使用智能将它们全部滚动并检查它们是否是在该特定日期之前。
我认为您可以只创建一个 Date 对象
new Date(year, month, day [, hour, minute, second, millisecond]);
比另一个日期为 1940 年 1 月 1 日,您可以比较它们:date1 < date2