AngularJS | Conditional Class using ng-class

可紊 提交于 2019-12-04 05:16:25

问题


I'm wanting to apply a conditional class to an element on the page.

Currently it's working with the following code:

ng-class="{ 'vfnz-form--error' : loginForm.username.$invalid  }

This applies a invalid class if the input field is invalid. I'm wanting to apply a "valid" class when the user input field is valid.

Is this possible to achieve in the same line of code?

Here is a fiddle example: JSFIDDLE


回答1:


You could just do it in many ways, one simple way would be to use an object with bracket notation.

Example:-

ng-class="{ true: 'vfnz-form--error', false : 'vfnz-form--good'  }[loginForm.username.$invalid]"

Or (since it cannot be both invalid and valid):-

ng-class="{'vfnz-form--error' : loginForm.username.$invalid, 'vfnz-form--good' : loginForm.username.$valid}"

And if you want to do it only if form is dirty you could yes add condition to check for $pristine/$dirty but you could also make use of the class angular adds on the inputs (and on the form as well) i.e ng-pristine/ng-dirty so you could define the rule with these class names to make it more specific.

ex:-

.vfnz-form--error .ng-dirty.something{/*apply bad rules*/} 


来源:https://stackoverflow.com/questions/28269916/angularjs-conditional-class-using-ng-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!