在我的模型中,我有以下内容:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:H:mm}")]
public DateTime _time { get; set; }
在我Edit
的文本框中的视图中,设置的值是完整的日期和时间,当我尝试通过浏览器手动编辑值时,jQuery 验证会产生日期格式不正确的错误
当我ApplyFormatInEditMode=true
在文本框中添加为什么我得到格式化的一个(唯一时间)的完整日期时,为什么当格式是没有日期的时间时jQuery验证器会抛出错误,我该如何绕过它?