有没有一个跨浏览器的解决方案来监控document.activeElement何时发生变化?

时间:2012-04-05 20:30:49

标签: javascript focus document

我真的在寻找适用于所有当前流行浏览器(IE9,Chrome,Firefox,Safari)并一直回到IE8的东西。

虽然,我一直在寻找一种方法来在焦点失去焦点后将焦点设置在Flash移动对象上,但我发现所有历史方法都失败了。我认为这是另一个安全问题。

所以,我现在正在寻找如何监控document.activeElement的某种变更事件(虽然“改变”并没有真正发生)。

3 个答案:

答案 0 :(得分:12)

虽然@ James的答案是正确的。我添加了更多细节,使其成为一个完全可行的解决方案,同时也使用focus事件。

<html>
<body>
    <input type="text" id="Text1" name ="Text1" value=""/>
    <input type="text" id="Text2" name ="Text2" value=""/>
    <SELECT><OPTION>ASDASD</OPTION><OPTION>A232</OPTION></SELECT>
    <INPUT TYPE="CHECKBOX" id="Check1"/>
    <INPUT type="TEXT" id="text3"/>
    <input type="radio"/>
    <div id="console"> </div>
    <textarea id="textarea1"> </textarea>
    <script>

        var lastActiveElement = document.activeElement;

        function detectBlur() {
            // Do logic related to blur using document.activeElement;
            // You can do change detection too using lastActiveElement as a history
        }

        function isSameActiveElement() {
            var currentActiveElement = document.activeElement;
            if(lastActiveElement != currentActiveElement) {
                lastActiveElement = currentActiveElement;
                return false;
            }

            return true;
        }

        function detectFocus() {
            // Add logic to detect focus and to see if it has changed or not from the lastActiveElement. 
        }

        function attachEvents() {
            window.addEventListener ? window.addEventListener('focus', detectFocus, true) : window.attachEvent('onfocusout', detectFocus);  

            window.addEventListener ? window.addEventListener('blur', detectBlur, true) : window.attachEvent('onblur', detectBlur);
        }

        attachEvents();

    </script>
</body>
</html>

答案 1 :(得分:2)

似乎您可以使用捕获焦点/模糊和focusin / focusout(IE)事件的组合。也许是这样的事情:

window.addEventListener ?
  window.addEventListener('blur', blurHappened, true)
  : window.attachEvent('onfocusout', blurHappened);

function blurHappened() {
  console.log('document.activeElement changed');
}

onfocusout会抓住冒泡的“模糊”,blur上的常规addEventListener会抓住“模糊”。

您可能需要在blurHappened中添加其他支票。我不确定,因为我没有测试过。

答案 2 :(得分:1)

根据我的经验,跨浏览器问题的最佳信息来源是Quirksmode。这是“明显”(但不可用)选项的链接 - 焦点和模糊事件。

http://www.quirksmode.org/dom/events/blurfocus.html

奇怪(令人惊讶的是)它是基于Webkit的浏览器,在这里是美中不足。

另一种选择是使用间隔计时器来检查activeElement是否已更改为您的唯一选项或作为焦点/模糊的备份。 (您还可以监听按键,鼠标单击和触摸以检查activeElement是否发生更改。)如果您介绍这些选项,则您的intervalTimer几乎不需要清理。