html中的下拉列表引用

时间:2018-05-28 13:17:23

标签: html angular

我有一个基于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>

我们不知道在哪里看。

0 个答案:

没有答案