Javascript:关闭Modal,焦点不返回屏幕

Javascript: Close Modal and the focus not return to the screen

本文关键字:返回 屏幕 焦点 关闭 Modal Javascript      更新时间:2023-09-26

我通过jQuery使用模态对话框。当我关闭模态时,我不能按任何键(不能通过鼠标单击)。模态对话框的元素是否保持焦点事件,当它关闭时

 <button class="btn" data-dismiss="modal" id="btn-cancel" aria-hidden="true">Cancel</button>

我刚刚创建了一个工作示例。

你能告诉我们,你的代码与工作示例有什么不同吗?

我已经修复了。当模式被隐藏时,只需为你想要触发的事件设置setTimeOut。

$('#modalViewNode').on('hidden.bs.modal', function (e) {
        setTimeout("$('.splittable-primary').focus();", 200);
    });