在ASP.NET MVC中使用jQuery验证插件需要什么?我是否只需要包含jquery.validate.js
和jquery.validate.unobtrusive.js
以使其发挥作用?
答案 0 :(得分:1)
如果您包含以下两个脚本 -
,它应该有效<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>
可以在本文中找到更多信息 - http://rachelappel.com/asp-net-mvc/how-data-annotations-for-asp-net-mvc-validation-work/
答案 1 :(得分:0)
要获得jQuery验证,您只需要包含jquery.validate.js 要让它不引人注目javascript然后包括jquery.validate.unobtrusive.js
为了获得任何验证,你有几个选择:
1. Use DataAnnotations on your View Models
2. Use another library like FluentValidation which will use the jQuery validation.
3. Manually add the jquery validation calls.