我是AngularJS的新手,我对此表示怀疑:
<select-one options="studentOptions" ng-disabled="student.type == 1"></select-one>
^ 有了上面的代码片段,我就可以反对(或涂灰)一堆单选按钮。但是我想隐藏那些单选按钮,所以我将其更改为:
<select-one options="studentOptions" ng-hide="student.type == 1"></select-one>
但是,它现在没有效果!您能帮我了解我要去哪里了吗? 我希望将“ ng-disabled”更改为“ ng-hide”时隐藏这些单选按钮,但没有得到预期的结果。