Bootstrap Modal Focus无法正常工作

时间:2016-03-02 21:41:23

标签: modal-dialog focus

在制作网络时,我没有把注意力集中在一个"输入"进入Bootstrap模态,我尝试了一切并且没有工作,模态出现但输入没有得到关注。我做了一个" test.php"用一个简单的模态,也不起作用。这是" 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">&times;</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&oacute;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服务器上也无法正常工作,但如果我将相同的代码放在&#34;小提琴&#34;上,则有效细

知道什么是错的?如果我需要其他东西......或者在服务器上安装一些东西。

Pd积。抱歉我的英文。

2 个答案:

答案 0 :(得分:28)

尝试此操作(自动对焦添加到您的链接):

-fx-accent

或试试这个:

<input name="referencia" id="referencia" type="text" class="form-control text-uppercase" placeholder="Descripci&oacute;n" autofocus>

或者这个:

$('#myModal').on('shown.bs.modal', function () {
    $('#myInput').focus();
})

答案 1 :(得分:0)

尝试一下:

$('#modal_id').modal('show').on('shown.bs.modal', function() {
    $('input_element_id').focus();
});

或尝试以下操作:

$('#modal_id').on('shown.bs.modal', function() {
    $('input_element_id').focus();
});
$('#modal_id').modal('show');