gpt4 book ai didi

javascript - 检测 iframe 何时获得或失去焦点

转载 作者:技术小花猫 更新时间:2023-10-29 12:44:43 26 4
gpt4 key购买 nike

检测 iframe 何时获得或失去焦点(即是否会接收键盘事件)的正确方法是什么?以下内容在 Fx4 中不起作用:

var iframe = /* my iframe */;
iframe.addEventListener("focus", function() { /* never gets called */ }, false);

最佳答案

您可以轮询“document.activeElement”以确定它是否与 iframe 匹配。轮询并不理想,但它有效:

function checkFocus() {
if(document.activeElement == document.getElementsByTagName("iframe")[0]) {
console.log('iframe has focus');
} else {
console.log('iframe not focused');
}
}

window.setInterval(checkFocus, 1000);

关于javascript - 检测 iframe 何时获得或失去焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5456239/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com