所以我已经按照以下方式实施了一个选定的下拉列表。 选择"选择的选择框"指令作为我用来更新和初始化列表的属性。选择中还有一个ng模型。
<select id="{{$index+1}}" class="chosen" data-placeholder="Enter
City..." chosen ng-model="cityName" ng-options="city.name for city in
cityList">
<option></option>
</select>
这是指令的样子:
.directive('chosen', function($timeout){
return {
restrict:'A',
link: function(scope, elem, attrs) {
// watcher to update chosen
}
}
如何使用相应的选定值访问DOM中的所有此类选择框?