Html.ValidationMessage不适用于Internet Explorer 8/9

时间:2013-04-24 19:47:22

标签: internet-explorer validation asp.net-mvc-4

这是我的.cshtml:

@Html.TextBoxFor(model => model.DisplayPrice, new { id = "inputDisplayPrice", data_bind = "value: DisplayPrice" })
@Html.ValidationMessageFor(model => model.DisplayPrice, string.Empty, new { @class = "validate" })

出于某种原因,它适用于Firefox,但它没有显示任何IE验证。有解决方法吗?

编辑:

固定。我已经添加了以下对.cshtml头的引用,现在可以在IE中使用:

<script src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"></script
<script src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script> 

0 个答案:

没有答案