问题描述
在制作网页时,我没有在 Bootstrap 模态的输入"中获得焦点,我尝试了所有方法但没有成功,出现模态但输入没有获得焦点.我用一个简单的模式制作了一个test.php",也不起作用.这是test.php"
while making a web I didn't get focus in a "input" into Bootstrap Modal, I tried everything and didn't work, modal appears but input doesn't get focus. I have make a "test.php" with a simple modal and doesn't work either. Here is the "test.php"
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../css/bootstrap.min.css" rel="stylesheet">
<script src="../js/jquery.min.js"></script>
<script src="../js/bootstrap.min.js">
<script>
$('#myModal').on('shown.bs.modal', function () {
$('#referencia').focus();
})
</script>
</head>
<body>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal">
<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">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<input name="referencia" id="referencia" type="text" class="form-control text-uppercase" placeholder="Descripción">
</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><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</body>
如果我在我的服务器上尝试此代码它不起作用,在 unelink.es 服务器上也不起作用,但如果我将相同的代码放在fiddle"上,则可以正常工作.
If I try this code on my server it doesn't work, on unelink.es server doesn't work either, but if I put the same code on "fiddle", works fine.
知道什么是错的吗?如果我需要其他东西......或者在服务器中安装一些东西.
Any idea of what is wrong? If I need something else... or install something in server.
P.D.对不起我的英语.
P.D. Sorry for my English.
推荐答案
试试这个(自动对焦添加到您的链接):
Try this (autofocus added to your link):
<input name="referencia" id="referencia" type="text" class="form-control text-uppercase" placeholder="Descripción" autofocus>
或者试试这个:
$('#myModal').on('shown.bs.modal', function () {
$('#myInput').focus();
})
或者这个:
// Every time a modal is shown, if it has an autofocus element, focus on it.
$('.modal').on('shown.bs.modal', function() {
$(this).find('[autofocus]').focus();
});
这篇关于引导模态焦点不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!