我有一个基于HTML和JS构建的Sharepoint调查表。但是,Area
上的下拉列表无效,我们怀疑这是由于下面的代码。
<div class="panel-body">
<p>
<div class="form-group row required">
<label for="areaSelect" class="control-label col-md-2">Area</label>
<div class="col-md-4" ng-class="{ 'has-error' : headerForm.areaSelect.$invalid}">
<select class="form-control" id="AreaID" name="areaSelect" required ng-model="data.Area" ng-change="refreshCountries()" ng-readonly="data.IsSubmitted">
<option value="" disabled selected>Please select an Area</option>
<option ng-repeat="item in lookup.Areas" value="{{item}}">{{item}}</option>
</select>
</div>
我们不知道在哪里看。