我使用Angular JS和我需要设置一个下拉列表控件使用angular JS的选择选项。原谅我,如果这是可笑的,但我是新的Angular JS
这是我的html的下拉列表控件
<select ng-required="item.id==8 && item.quantity > 0" name="posterVariants" ng-show="item.id==8" ng-model="item.selectedVariant" ng-change="calculateServicesSubTotal(item)" ng-options="v.name for v in variants | filter:{type:2}"> </select>
之后它被填充我得到
<select ng-options="v.name for v in variants | filter:{type:2}" ng-change="calculateServicesSubTotal(item)" ng-model="item.selectedVariant" ng-show="item.id==8" name="posterVariants" ng-required="item.id==8 && item.quantity > 0" class="ng-pristine ng-valid ng-valid-required"> <option value="?" selected="selected"></option> <option value="0">set of 6 traits</option> <option value="1">5 complete sets</option> </select>
如何设置value =“0”的控件被选择?
我希望我理解你的问题,但ng-model指令在控件中的选定项目和item.selectedVariant的值之间创建一个双向绑定。这意味着在JavaScript中更改item.selectedVariant,或更改控件中的值,将更新另一个。如果item.selectedVariant的值为0,那么该项目应该被选中。
原文链接:https://www.f2er.com/angularjs/147129.html如果variant是一个对象数组,item.selectedVariant必须设置为其中一个对象。我不知道你的范围内有哪些信息,但这里有一个例子:
JS:
$scope.options = [{ name: "a",id: 1 },{ name: "b",id: 2 }]; $scope.selectedOption = $scope.options[1];
HTML:
<select data-ng-options="o.name for o in options" data-ng-model="selectedOption"></select>
这将留下“b”项目被选择。