模态关闭后自动对焦回到旧框

时间:2019-02-28 23:00:36

标签: javascript jquery bootstrap-modal autofocus

很抱歉,如果这是重复的,但我找不到任何东西。

我对Java语言非常陌生,但仍在尝试了解事件侦听器以及代码的运行方式。

除此之外,我还有一个引导程序模式窗口,当将数字放入输入框并发布时会弹出。

弹出模式框之前,该输入框会自动聚焦。

我在这里找到了有关如何将自动对焦置于模式窗口上的按钮上的帮助,它的工作原理非常好,如下所示:

$('.modal').on('shown.bs.modal', function() {
  $(this).find('[autofocus]').focus();
});

我的问题是当该模式窗口关闭时,我无法将自动对焦返回到输入框。

我尝试了各种版本,这是我的主要想法:

$("#no").click(function() {
  $(this).find('[autofocus]').focus();
});

$("#no").click(function() {
  $("staffID").focus();
});

staffID是输入框的ID。

但是它不会将焦点重新放在输入框上。 #no id是模态上的id,因此,如果按no,则希望返回原始站点,并专注于输入。

有人可以指出我正确的方向吗?

也被要求提供HTML,这里是(忽略冰岛语单词):

<!--CLOCKIN INPUT FORM-->
<form id="staffIdForm" method="post" action="" class="clockin-form">
      <input id="staffID" type="text" name="starfsmannanumer" class="clockin-box" placeholder="Starfsmannanúmer" autofocus/>
      <button id="clockIn" type="button" class="btn btn-success">Stimpla</button>
</form>

<!-- WELCOME MODAL -->
<div class="modal fade" id="welcome-modal" role="dialog" aria-labelledby="welcomeModalLabel" aria-hidden="true">
     <div class="modal-dialog" role="document">
           <div class="modal-content">
                 <div class="modal-header">
                      <h5 class="modal-title" id="welcomeModalLabel">
                          Góðan daginn <span id="nafn"></span>
                      </h5>
                      <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                          <span aria-hidden="true">&times;</span>
                      </button>
                 </div>
                 <div class="modal-body">
                     <p>Innstimplun skráð <span id="time"></span> þann <span id="date"></span></p>
                     <p>Viltu skrá þig í hádegismat?</p>
                 </div>
                 <div class="modal-footer">
                     <button id="no" type="button" class="btn btn-secondary" data-dismiss="modal" autofocus>Nei</button>
                     <button id="yes" type="button" class="btn btn-success">Já</button>
                 </div>
            </div>
      </div>
</div>

以下JavaScript需要运行该问题:

$("#clockIn").off('click').on('click', function () {
     $("#staffIdForm").submit();
});


$(function getEmployee() {
$("#staffIdForm").on('submit', function(e) {

    var staffId = (document.getElementById("staffID").value);
    console.log(staffId);
    $.post("Attendance/Home/ClockIn", { starfsmannanumer: staffId }, function(data, status) {
        console.log(data);
        $("#nafn").text(data.name);
        $("#clock-out-nafn").text(data.name);


        $(function () {
            //Display time in message
            var dt = new Date();
            document.getElementById("time").innerHTML = dt.toLocaleTimeString('en-GB');
            document.getElementById("clock-out-time").innerHTML = dt.toLocaleTimeString('en-GB');

            //Date message with Icelandic names
            var monthNames = [
                "jan&#250;ar", "febr&#250;ar", "mars", "apr&#237;l", "ma&#237;", "j&#250;n&#237;",
                "j&#250;l&#237;", "&#225;g&#250;st", "september", "okt&#243;ber", "n&#243;vember", "desember"]
            var day = dt.getDate();
            var monthIndex = dt.getMonth();
            document.getElementById("date").innerHTML = day + ". " + monthNames[monthIndex];;
            document.getElementById("clock-out-date").innerHTML = day + ". " + monthNames[monthIndex];;


            //Either check in or out message or error
            if (data.userId == "-1") {
                $("#invalid-staff-id").fadeIn('slow', function () {
                    $("#invalid-staff-id").delay(2000).fadeOut();
                });
            }
            else if (data.timeIn != null && data.timeOut == null) {
                $("#welcome-modal").stop(true).modal('show');
            }
            else if (data.timeIn != null && data.timeOut != null) {
                $("#clock-out-message").fadeIn('slow', function() {
                    $("#clock-out-message").delay(5000).fadeOut();
                    //TODO: L�ta �tstimplunarskilabo� hverfa ef �tt er � takka
                    //TODO: Autofocus � 'Nei' takkann
                });
            }
        })
        document.getElementById("staffID").value = "";
    });

    e.preventDefault();
});
});

$('#welcome-modal').on('shown.bs.modal', function () {
    $(this).find('[autofocus]').focus();
});

$('#welcome-modal').on('hidden.bs.modal', function () {
    $("staffID").focus();
});

我认为这就是全部。

1 个答案:

答案 0 :(得分:1)

绑定输入专注于模式关闭。有效的解决方案将是:

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

也请注意,在这里:

$("#no").click(function() {
  $(this).find('[autofocus]').focus();
});

this-您单击过的元素-似乎不正确,尝试在其中找到其他DOM元素