8

我想检测用户何时离开我的页面(例如打开一个新标签),以便我可以停止倒计时。我是这样做的:

$(window).blur(function() {
 //stop countdown
});

但是我的页面中有一个 iframe,当用户点击它时倒计时也会停止,但我不希望当有人点击 iframe 时执行上述事件。

任何的想法?

更新,我正在尝试更多,基于这个答案Click-event on iframe?

iframeDoc = $('iframe').contents().get(0);
$(iframeDoc).click(function(){
   //maybe remove blur event?
});

更新: Tim B 解决方案有效:

$(window).blur(function () {
// check focus
if ($('iframe').is(':focus')) {
    // dont stop countdown
}
else {
    // stop countdown
}                
});

现在我必须在每次调用模糊事件时从 iframe 中移除焦点,否则如果用户在聚焦 iframe 后更改选项卡,倒计时将不会停止。我使用上述条件尝试过这样的操作:

if ($('iframe').is(':focus')) {
    // dont stop countdown
    $("iframe").blur()
    $(window).focus();
}

但它没有用。任何的想法?

4

3 回答 3

5

一种解决方案是检查 iframe 是否具有焦点,然后不停止计时器。例如

$(window).blur(function () {
    // check focus
    if ($('iframe').is(':focus')) {
        // dont stop countdown
    }
    else {
        // stop countdown
    }                
});

现在这将起作用,但是如果您的 iframe 在用户更改选项卡时具有焦点,则倒计时不会停止。因此,在这种情况下,您需要考虑一个优雅的解决方案来将焦点从 iframe 之前移开。例如,如果用户在 iframe 内单击,则将焦点立即移回父窗口。

编辑 - 更新答案以包含额外的 iframe 功能

好的,所以我一直在玩这个。现在我不知道您的 iframe 中有什么内容,但是您可以向其中添加一些代码,这基本上会在单击时将焦点发送回父窗口中的对象。例如

在您的 iFrame 中

<script>
    $(function () {
        $(document).click(function () {
            // call parent function to set focus
            parent.setFocus();
        });
    });
</script>

在您的主页中

<script>

    function setFocus() {
        // focus on an element on your page.
        $('an-element-on-your-page').focus();
    }

    $(function () {

        $(window).focus(function (e) {
            // bind the blur event
            setBindingEvent();
        });

        var setBindingEvent = function () {
            // unbind
            $(window).unbind('blur');
            $(window).blur(function () {
                // check focus
                if ($('iframe').is(':focus')) {
                    // unbind the blur event
                    $(window).unbind('blur');
                }  
                else {
                    // stop countdown
                }                
            });
        };

        setBindingEvent();

    });
</script>

这将允许您单击 iframe,将焦点设置回主页,然后停止倒计时。

于 2013-04-16T13:29:31.873 回答
1

由于 iframe 的隔离,在其内部单击对父级来说算作模糊。如果 iframe 的内容可以通过 ajax 引入,那将是一个更好的选择。

于 2013-04-16T13:10:01.947 回答
0

我也有同样的问题。就我而言,我无法访问 iframe 页面及其由 CMS 加载的内容,也无法更改所有 iframe。我的计时器用 setInterval() 计数,在间隔内,我检查了 Iframe。

const focus = function() {
	// timer start
	isBlured = 0;
};

const blur = function() {
  // timer stop
  isBlured = 1;
}

window.addEventListener('focus', focus);
window.addEventListener('blur', blur);

function intervalFunction() {
 
  var activeELM = document.activeElement.tagName;

  if (isBlured == 0 || activeELM == "IFRAME"){
      // dont stop countdown
    	var stopIframe = $('iframe').blur();     
  }
  
}

于 2019-04-20T09:55:59.737 回答