我正在研究MVC4应用程序,因为我正在使用@ Html.EditorFor helper helper是可行的但是没有为该输入框添加类。我正在尝试这种方式
@Html.EditorFor(m => m.StartTime, new { htmlAttributes = new { @class = "form-control" } })
也是这样,
@Html.EditorFor(m => m.StartTime, new { Style:"Color:green;" })
答案 0 :(得分:1)
不要使用@ Html.EditorFor,而是必须使用@ Html.TextBoxFor来提供css类。
例如:
@Html.TextBoxFor(x => x.StartTime, new { @class = "form-control",@style="Color:green;" })
祝你好运