我正在使用 razor 视图页面,在日期时间字段中我想显示占位符,它在 Firefox 中显示,但在 chrome 中没有显示它的显示 - mm/dd/yyyy
。
她的是我的代码 -
@Html.EditorFor(model => model.Date, new { htmlAttributes = new { @class = "form-control form-inline", @placeholder = "Date must be today's or past date" } })
我该如何解决这个问题。??