从onBlur事件中获取新聚焦的元素(如果有)。

时间:2012-07-21 14:22:14

标签: javascript jquery

我需要在执行onBlur处理程序时获取新聚焦的元素(如果有的话)。

我该怎么做?

我可以想到一些可怕的解决方案,但没有任何不涉及setTimeout的内容。

2 个答案:

答案 0 :(得分:22)

参考:

document.activeElement

不幸的是,当模糊事件发生时,新元素没有被聚焦,因此这将报告正文。因此,您将不得不使用标记和焦点事件来破解它,或者使用setTimeout。

$("input").blur(function() {
    setTimeout(function() {
        console.log(document.activeElement);
    }, 1);
});​

工作正常。


没有setTimeout,您可以使用:

http://jsfiddle.net/RKtdm/

(function() {
    var blurred = false,
        testIs = $([document.body, document, document.documentElement]);
    //Don't customize this, especially "focusIN" should NOT be changed to "focus"
    $(document).on("focusin", function() {

        if (blurred) {
            var elem = document.activeElement;

            blurred = false;

            if (!$(elem).is(testIs)) {
                doSomethingWith(elem); //If we reached here, then we have what you need.
            }

        }

    });
    //This is customizable to an extent, set your selectors up here and set blurred = true in the function
    $("input").blur(function() {
        blurred = true;
    });

})();​

//Your custom handler
function doSomethingWith(elem) {
     console.log(elem);
}

答案 1 :(得分:3)

为什么不使用focusout事件? https://developer.mozilla.org/en-US/docs/Web/Events/focusout

relatedTarget属性将为您提供接收焦点的元素。