html – 在EditorFor上自动对焦

前端之家收集整理的这篇文章主要介绍了html – 在EditorFor上自动对焦前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的应用程序中自动聚焦编辑器,但我似乎无法做到这一点.我已成功在文本框上使用自动对焦,但我想使用编辑器来保持应用程序的外观普遍.

任何解决方案都将非常感谢,谢谢.

我的尝试:

@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有点聪明,它会根据属性的数据类型呈现标记.

原文链接:https://www.f2er.com/html/226208.html

猜你在找的HTML相关文章