这是我的 .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>