我的页面上有以下 HTML,其中有 2 个select
元素。我希望它们都是必需的。我希望第二个元素currentModel
保持禁用状态,直到使用除 之外的值选择第一个元素Year
,这是我的默认值。
<select class="form-control input-xsmall select-inline" data-ng-model="currentYear" >
<option>Year</option>
<option ng-repeat="year in years" value="{{year}}">{{year}}</option>
</select>
<select class="form-control input-xsmall select-inline" data-ng-model="currentModel">
<option>Model</option>
<option ng-repeat="model in models" value="{{model.niceName}}">{{model.name}}</option>
</select>
有人可以帮助我如何验证这样的选择元素吗?