8
MVC4 DataType.Date EditorFor在Chrome中不显示日期值,在Internet Explorer中很好
我在模型上使用DataType.Date属性,并在视图中使用EditorFor。在Internet Explorer 8和Internet Explorer 9中,这可以正常工作,但是在Google Chrome浏览器中,它显示的是日期选择器,而不是显示值,而只是以淡灰色文本显示“月/日/年”。 Google Chrome为什么不显示该值? 模型: [DataType(DataType.Date)] public Nullable<System.DateTime> EstPurchaseDate { get; set; } 视图: <td class="fieldLabel">Est. Pur. Date</td> <td class="field">@Html.EditorFor(m=>m.EstPurchaseDate)</td>