0
我希望引起關注尚未通過模型驗證的字段。例如,在文本框的情況下,是否可以打印紅色星號?在驗證錯誤上渲染自定義內容
如:@Html.EditorFor(m => m.UserName)<span title="The User Name is required.">*</span>
我希望引起關注尚未通過模型驗證的字段。例如,在文本框的情況下,是否可以打印紅色星號?在驗證錯誤上渲染自定義內容
如:@Html.EditorFor(m => m.UserName)<span title="The User Name is required.">*</span>
你試過這樣簡單的東西:
@Html.ValidationMessageFor(model => model.UserName, "*")
您需要以下腳本:
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="@Url.Content("~/Scripts/jquery-1.7.2.min.js")"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
必須有一個更好的方式,不需要javascript =/ – Kivin 2012-07-19 05:26:43
由於您正在使用MVC,所以習慣使用JavaScript和jQuery – Jupaol 2012-07-19 05:31:08