iframe 内的 setTimeout,焦点丢失时的问题

发布于 2024-11-25 15:39:47 字数 499 浏览 0 评论 0原文

我有一个带有简单 setTimeout 内容的 iframe:

function load()
{
    setTimeout("reloadContent()", 8000);
}

function reloadContent()
{
    $('#somecontent').doSomething();
    load();
}

$(document).ready(function() 
{
    reloadContent();
});

当我失去对父窗口的焦点(即移动到另一个程序或另一个选项卡)时,问题就出现了。似乎它以某种方式堆叠了必须重新加载内容的次数,然后当我重新获得焦点时,它会毫无延迟地执行所有操作。

当我使用jQuery 1.6.2时,此代码会失败,但它可以与jQuery 1.3.2一起使用。我缺少什么?关于窗口/父级/iframe 模糊/焦点增益/损失有什么重要的信息需要了解吗?有什么提示或技巧吗?

谢谢!

I have an iframe with a simple setTimeout stuff:

function load()
{
    setTimeout("reloadContent()", 8000);
}

function reloadContent()
{
    $('#somecontent').doSomething();
    load();
}

$(document).ready(function() 
{
    reloadContent();
});

The problem comes when I lost focus on the parent window (i.e. moving to another program or another tab). It seems like it stack somehow the number of times that it have to reload the content, and then when I regain focus, it executes it all without between delay.

This code fails when I use jQuery 1.6.2, but it works with jQuery 1.3.2. What am I missing? Is there something important to know about window/parent/iframe(s) blur/focus gain/losses? Any hints or tips?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尘世孤行 2024-12-02 15:39:47

您需要监视页面上的 onblur 和 onfocus 事件..

    window.addEventListener('focus', function() {
        timeoutVarName = setTimeout(...,8000);
    });

    window.addEventListener('blur', function() {
        clearTimeout(timeoutVarName);
    });

您可以使用以下命令执行相同的操作:

window.onblur = function(){
    ...
};

window.onfocus = function(){
    ...
};

但这在 google chrome 中不起作用:)

you need to monitor the onblur and onfocus event on your page..

    window.addEventListener('focus', function() {
        timeoutVarName = setTimeout(...,8000);
    });

    window.addEventListener('blur', function() {
        clearTimeout(timeoutVarName);
    });

you can do the same thing by using:

window.onblur = function(){
    ...
};

window.onfocus = function(){
    ...
};

but that wont work in google chrome :)

ゞ记忆︶ㄣ 2024-12-02 15:39:47

尝试 http://www.eslinstructor.net/smartupdater3/ 中的 Smartupdater 3 并可能使用 div 和不是 iframe。

你必须使用 jQuery

Try Smartupdater 3 from http://www.eslinstructor.net/smartupdater3/ and maybe use a div and not an iframe.

You have to use then jQuery

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文