我一直在使用数据注释进行模态验证。我的问题是当我从modal显示验证消息然后样式不适用时,当我使用chrome开发工具调试代码时,我看到标记语言如下
<span class="field-validation-valid text-danger"
data-valmsg-for="StudentName"
data-valmsg-replace="true">student name is required</span>
但是当验证消息是在剃刀视图中定义的自定义消息时,则应用样式并且标记语言如下
>>> from collections import Counter
>>> from itertools import chain
>>> Counter(chain.from_iterable(test))
Counter({'P1': 15, 'P2': 4, 'P4': 2, 'P3': 1})
有人可以帮忙吗? 提前致谢
答案 0 :(得分:0)
查看代码:
@Html.ValidationMessageFor(model => model.FirstName, "", new { @class = "CustomeError" })
Style Code:
<style>
.CustomeError {
color: chocolate;
font-family: 'Times New Roman';
}
</style>