显示模态后将焦点设置为控制

Posted

技术标签:

【中文标题】显示模态后将焦点设置为控制【英文标题】:Set focus to control after show modal 【发布时间】:2015-04-26 11:03:09 【问题描述】:

在显示模式事件之后,我需要将焦点设置在模式内的控件上。

这是我目前的代码:

$('#searcherCustomerModal').on('shown', function () 
    $("#txtNameCustomer").select();
);

但它不起作用。有什么想法吗?

【问题讨论】:

为什么会有knockout.js标签? 我正在使用 knockout.js 进行开发...我将删除它... 已修复,我在这个问题中找到了解决方案!! :link .. $('#myModal').on('shown.bs.modal', function () $('#textareaID').focus(); ) @FreddyCastelblancoMacias 您应该发布您的答案并接受它,以便未来的用户可以看到。 【参考方案1】:

在 jQuery 中,您使用 .focus() 而不是 .select() 设置焦点 此外,在 Bootstrap 3 中,显示的事件称为 shown.bs.modal

所以代码应该是这样的:

$('#searcherCustomerModal').on('shown.bs.modal', function () 
    $("#txtNameCustomer").focus();
);

堆栈片段中的演示

$('#searcherCustomerModal').on('shown.bs.modal', function () 
    $("#txtNameCustomer").focus();
);
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.css" rel="stylesheet"/>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/js/bootstrap.js"></script>

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#searcherCustomerModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="searcherCustomerModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      
      <div class="modal-body">
        <input type="text" id="txtNameCustomer" class="form-control" />
      </div>
      
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
      
    </div>
  </div>
</div>

【讨论】:

以上是关于显示模态后将焦点设置为控制的主要内容,如果未能解决你的问题,请参考以下文章

提交后将焦点设置在输入元素上

在 Web 上,如何控制自动显示在焦点 TextFormField 上的可见性图标,该 TextFormField 的 obscureText 属性设置为 true?

无法设置模态内部元素的 tabindex

将其设置为清除后,Swift 模态视图背景显示为黑色

模态视图控制器工具栏的设置项

显示模态视图时使 iPhone 状态栏消失?