我有两个输入类型日期字段,我需要将第一个输入日期类型的选定日期作为第二个输入日期类型的最小日期。我该如何实现?请找到我现有的代码。
<html>
<input type="date" ng-model="date1" required/>
<input type="date" ng-model="date2" required/>
</html>
答案 0 :(得分:0)
您可以添加以下代码片段以达到要求。
<html>
<input type="date" ng-model="date1" required/>
<input type="date" ng-model="date2" required min="{{date1 | date:'yyyy-MM-dd'}}"/>
</html>