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