Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这非常简单,但我无法更改课程。
我基本上是在验证日期是否格式正确(DD-MMM-YYYY hh:mm:ss)。
<input type="text" style="width : 80%" ng-model="startTime" ng-class="{invalid: !isValid ,valid: isValid}" />
其中 isValid 是一个范围变量,其计算结果为真假。未应用 css 类。
这是plnkr。
这是工作。检查元素。您的引导类正在覆盖它。尝试这个:
.invalid { background-color: #FA787E !important; } .valid { background-color: #78FA89 !important; }