gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 03:37:49 24 4
gpt4 key购买 nike

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

这是我到目前为止的代码:

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

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

最佳答案

在 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>

关于jquery - 显示模态后将焦点设置为控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28702310/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com