我有一个具有两个选择的表格。我想要实现的是,如果在第一个选择中选择了“任何”选项,请在另一个选择中禁用其中一个选项。
因此,在这里,如果选择了“ Any”(属于vm.scriptTypes的一部分,则vm是控制器):
<select name="scriptType" id="scriptType" class="form-control" required
ng-model="vm.rule.scriptType"
ng-options="option.name as option.name for option in vm.scriptTypes">
</select>
从vm.actions(ng-options)中禁用“组合禁令”(“组合禁令”是vm.actions的一部分,它是一个对象,具有“类型”和“命令”键) >
<select name="action" id="action" class="form-control" required
ng-model="vm.rule.action"
ng-change="vm.rule.action "
ng-options="(option.type + ' ' + option.command) as (option.type + ' ' + option.command) for option in vm.actions">
</select>
在此先感谢您提供的帮助。
答案 0 :(得分:0)
您可以在ngOptions https://docs.angularjs.org/api/ng/directive/ngOptions中使用disable when
参数
<div ng-app="TestApp" ng-controller="TestController">
<select name="scriptType" id="scriptType" class="form-control" required
ng-model="rule.scriptType"
ng-options="option.name as option.name for option in scriptTypes">
</select>
<select name="action" id="action" class="form-control" required
ng-model="rule.action"
ng-change="rule.action "
ng-options="(option.type + ' ' + option.command) as (option.type + ' ' + option.command) disable when (rule.scriptType == 'Any' && option.type == 'Combination ban') for option in actions">
</select>
</div>
js:
var app = angular.module('TestApp', []);
app.controller('TestController', function($scope) {
$scope.scriptTypes = [{
name: 'Any'
},
{
name: 'ron'
},
{
name: 'ron2'
}];
$scope.actions = [{
type: 'type1',
command: 'cmd1',
},
{
type: 'type2',
command: 'cmd2',
},
{
type: 'Combination ban',
command: 'Combination ban',
}];
});
答案 1 :(得分:0)
为什么不尝试select内的选项标签? 例如:
<select name="action" id="action" class="form-control" required
ng-model="vm.rule.action"
ng-change="vm.rule.action "
ng-options="(option.type + ' ' + option.command) as (option.type + ' ' + option.command) for option in vm.actions">
<option value="{{option.type + ' ' + option.command}}" ng-disabled="option.type == 'Combination ban' && vm.rule.scriptType == 'Any'">{{option.type + ' ' + option.command}}</option>
</select>
请告诉我它是否无效。 我没有测试。