当我在文本框中输入数字时,我想为下面另一个文本框的文本上色,以根据输入的值变为红色,但是我不确定ng样式的语法是否正确数学表达式。感谢您的帮助!

     ng-model =“ approval.groupCreditLimit” ng-style =“ {'color':( approval.siteTotal + Approval.siteCreditLimit)> Approval.groupCreditLimit)?'red':'inherit'}” class =“ form-control” name =“ groupCreditLimit” placeholder =“组信用额度”>

最佳答案

尝试这样的事情

ng-style="( (approval.siteTotal + approval.siteCreditLimit) > approval.groupCreditLimit) ? {'color': 'red'} : {'background-color': 'inherit'}"


here是一个有效的演示

07-28 05:33