在iframe模式对话框中保持焦点

时间:2018-12-07 10:47:02

标签: javascript html modal-dialog

我的页面上有一个模式,但在iframe中。我想在模式内限制制表符的焦点,直到用户单击接受按钮。接受按钮是最后一个可聚焦元素。我正在使用以下代码,但在聚焦之后,聚焦将超出模态

modalAcceptButton.addEventListener('focusout', function(event) {
    event.preventDefault();
    event.stopPropagation();
    modalHeading.focus();
});

有什么建议吗?

解决方案

https://jsfiddle.net/momenelkamri/6q9fh2n0/

感谢https://gist.github.com/gustavpursche/5907263

0 个答案:

没有答案
相关问题