我想在我的应用程序中自动聚焦编辑器,但我似乎无法做到这一点.我已成功在文本框上使用自动对焦,但我想使用编辑器来保持应用程序的外观普遍.
任何解决方案都将非常感谢,谢谢.
我的尝试:
@Html.EditorFor(model => model.Description,new { htmlAttributes = new { @class = "form-control" },autofocus = "" })
解决方法
这是因为您使用的是EditorFor而不是TextBoxFor之类的特定内容.
@Html.TextBoxFor(model => model.Name,new { htmlAttributes = new { @class = "form-control" },autofocus="autofocus"})
或者你可以使用jQuery做到这一点:
<div class="editor-field focus"> @Html.EditorFor(model => model.Description) @Html.ValidationMessageFor(model => model.Description) </div> $(function() { $('.focus :input').focus(); });
更新:如你所知,TextBoxFor总是创建一个带有类型输入的文本框,但是EditorFor有点聪明,它会根据属性的数据类型呈现标记.