如果我点击蓝色边框内标记的下拉列表,我希望根据条件启用/禁用下面的按钮。
如果我选择第一个下拉值。我希望第3和第4个按钮被禁用,第1和第2按钮应该是活动的。
我正在寻找一些角度js代码(ng-disabled
或ng-class
)
答案 0 :(得分:0)
选择器必须绑定到某个ng-model,它会跟踪当前值。假设你有类似的东西:
<select ng-model="FooBar">
Some options... (with their respectives value)
</select>
您可以使用此var&#34; FooBar&#34;启用或取消多个按钮:
<input ng-disabled="FooBar !== desiredEnableValue">