同域iFrame中访问主窗口setTimeoutID

发布于 2024-12-20 20:13:34 字数 505 浏览 1 评论 0原文

我试图提醒用户大约 30 秒内不活动。因此,在我的应用程序中,我设置了警报超时。

主窗口代码:

<script>
    var timeoutID = setTimeout('alert("You are logged out due to inactivity.")', 30000);
</script>

iFrame :

<script>
  $(document).ajaxStop(function(){
     clearTimeout(timeoutID);
     var timeoutID = setTimeout('alert("You are logged out due to inactivity.")', 30000);
  });
</script>

现在,当我在 iFrame 中并执行某些操作时,我的主窗口警报仍然出现。不知道如何重置相同的 timeoutID。

I am trying to alert user for inactivity about 30 secs. So in my application I am setting timeout for alert.

Main window code:

<script>
    var timeoutID = setTimeout('alert("You are logged out due to inactivity.")', 30000);
</script>

iFrame :

<script>
  $(document).ajaxStop(function(){
     clearTimeout(timeoutID);
     var timeoutID = setTimeout('alert("You are logged out due to inactivity.")', 30000);
  });
</script>

Now, when I am in iFrame and doing something my main window alert still comes. Not sure how to reset the same timeoutID.

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

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

发布评论

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

评论(1

维持三分热 2024-12-27 20:13:34

use

top.timeoutID

在设置新超时时也使用它,否则当您离开 iframe 时将无法访问超时。

还有一个错字:fucntion

use

top.timeoutID

Use it also when setting the new timeout, otherwise you will not be able to access to the timeout when navigating away from the iframe.

there is also a typo: fucntion

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