iframe 内的 setTimeout,焦点丢失时的问题
我有一个带有简单 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要监视页面上的 onblur 和 onfocus 事件..
您可以使用以下命令执行相同的操作:
但这在 google chrome 中不起作用:)
you need to monitor the onblur and onfocus event on your page..
you can do the same thing by using:
but that wont work in google chrome :)
尝试 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