如何仅使用jquery来验证我的验证?我不想使用Microsoft ajax。我在this blog上看到了我想要的内容,但似乎文件MicrosoftMvcJqueryValidator.js
已被弃用或取消。
现在有正式方法吗?可能使用asp.net mvc 3。
答案 0 :(得分:1)
实现此目的所需的一切都已包含在ASP.NET MVC 3.0 Beta 1模板中。
型号:
public class MyViewModel
{
[Required]
public string Value { get; set; }
}
控制器:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel());
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
return View(model);
}
}
查看:
<script type="text/javascript" src="<%: Url.Content("~/scripts/jquery-1.4.1.js") %>"></script>
<script type="text/javascript" src="<%: Url.Content("~/scripts/jquery.validate.js") %>"></script>
<script type="text/javascript" src="<%: Url.Content("~/scripts/jquery.validate.unobtrusive.js") %>"></script>
<% Html.EnableClientValidation(); %>
<% using (Html.BeginForm()) { %>
<%: Html.TextBoxFor(x => x.Value) %>
<%: Html.ValidationMessageFor(x => x.Value) %>
<input type="submit" value="OK" />
<% } %>
如果您想对ASP.NET MVC 2.0做同样的事情,则需要下载ASP.NET MVC Futures的源代码并从包中提取MicrosoftMvcJQueryValidation.js
以包含在您的站点中。
答案 1 :(得分:0)