我已经为我的表单设置了模型验证,但验证似乎根本不起作用。我想没有人能帮上忙。我尝试过使用以下解决方法,但这会在萤火虫中不断出现“未定义”错误。
示例解决方法脚本:
<script type="text/javascript">
$(document).ready(function () {
$.validator.setDefaults({ ignore: [] });
});
</script>
示例文本字段(注意:带有客户姓名的自动完成文本字段):
@Html.TextBox("txtCustomer", null, new { @id = "txtCustomer", @class = "txt" })
隐藏字段示例(注意:从自动完成字段中进行选择时,将 id 注入隐藏字段):
@Html.HiddenFor(model => model.Customer_ID, new { @id = "hCustomerID" })
示例模型数据注释
[Range(1, Int32.MaxValue, ErrorMessage = "Please select a customer")]
public int Customer_ID { get; set; }
编辑:错误截图
抱歉,我必须发布截图链接,因为我的代表点足够高。
编辑:显示页面源的屏幕截图