• <bdo id='OcnvT'></bdo><ul id='OcnvT'></ul>
    <i id='OcnvT'><tr id='OcnvT'><dt id='OcnvT'><q id='OcnvT'><span id='OcnvT'><b id='OcnvT'><form id='OcnvT'><ins id='OcnvT'></ins><ul id='OcnvT'></ul><sub id='OcnvT'></sub></form><legend id='OcnvT'></legend><bdo id='OcnvT'><pre id='OcnvT'><center id='OcnvT'></center></pre></bdo></b><th id='OcnvT'></th></span></q></dt></tr></i><div id='OcnvT'><tfoot id='OcnvT'></tfoot><dl id='OcnvT'><fieldset id='OcnvT'></fieldset></dl></div>

  • <tfoot id='OcnvT'></tfoot>

      1. <small id='OcnvT'></small><noframes id='OcnvT'>

      2. <legend id='OcnvT'><style id='OcnvT'><dir id='OcnvT'><q id='OcnvT'></q></dir></style></legend>

        PC从睡眠模式唤醒时开始调用js函数

        时间:2023-10-14
        • <bdo id='MCjfq'></bdo><ul id='MCjfq'></ul>
            <tbody id='MCjfq'></tbody>
          <legend id='MCjfq'><style id='MCjfq'><dir id='MCjfq'><q id='MCjfq'></q></dir></style></legend>

            1. <small id='MCjfq'></small><noframes id='MCjfq'>

              <tfoot id='MCjfq'></tfoot>

                • <i id='MCjfq'><tr id='MCjfq'><dt id='MCjfq'><q id='MCjfq'><span id='MCjfq'><b id='MCjfq'><form id='MCjfq'><ins id='MCjfq'></ins><ul id='MCjfq'></ul><sub id='MCjfq'></sub></form><legend id='MCjfq'></legend><bdo id='MCjfq'><pre id='MCjfq'><center id='MCjfq'></center></pre></bdo></b><th id='MCjfq'></th></span></q></dt></tr></i><div id='MCjfq'><tfoot id='MCjfq'></tfoot><dl id='MCjfq'><fieldset id='MCjfq'></fieldset></dl></div>

                  本文介绍了PC从睡眠模式唤醒时开始调用js函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  在我的 aspx 页面中,我使用 xmlhttp.response 来更新此页面的一部分.使用 js 函数,此更新每 3 秒发生一次.但是当我的电脑进入睡眠模式时,这个更新不会发生.还行吧.但是当电脑从睡眠模式唤醒时,我需要自动开始更新而不重新加载这个页面.如何做到这一点?

                  In my aspx page, I use xmlhttp.response to update a part of this page. This update occurs in every 3 seconds using js function. But when my PC goes to sleep mode, this update doesn't happen. This is OK. But when PC wake up from sleep mode, I need to start update automatically without reload this page. How to do this?

                  推荐答案

                  您可以检测 JS 时间线中的中断(例如笔记本电脑睡眠、阻止 JS 执行的警报窗口、打开调试器的 debugger 语句) 通过比较墙上时间的变化与预期的计时器延迟.例如:

                  You can detect disruptions in the JS timeline (e.g. laptop sleep, alert windows that block JS excecution, debugger statements that open the debugger) by comparing change in wall time to expected timer delay. For example:

                  var SAMPLE_RATE = 3000; // 3 seconds
                  var lastSample = Date.now();
                  function sample() {
                    if (Date.now() - lastSample >= SAMPLE_RATE * 2) {
                      // Code here will only run if the timer is delayed by more 2X the sample rate
                      // (e.g. if the laptop sleeps for more than 3-6 seconds)
                    }
                    lastSample = Date.now();
                    setTimeout(sample, SAMPLE_RATE);
                  }
                  
                  sample();
                  

                  这篇关于PC从睡眠模式唤醒时开始调用js函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:从 &lt;iframe&gt; 发出的 XHR 请求的 Origin 标头 下一篇:Access-Control-Allow-Origin 不允许 XMLHttpRequest Origin

                  相关文章

                  最新文章

                  <i id='g4djL'><tr id='g4djL'><dt id='g4djL'><q id='g4djL'><span id='g4djL'><b id='g4djL'><form id='g4djL'><ins id='g4djL'></ins><ul id='g4djL'></ul><sub id='g4djL'></sub></form><legend id='g4djL'></legend><bdo id='g4djL'><pre id='g4djL'><center id='g4djL'></center></pre></bdo></b><th id='g4djL'></th></span></q></dt></tr></i><div id='g4djL'><tfoot id='g4djL'></tfoot><dl id='g4djL'><fieldset id='g4djL'></fieldset></dl></div>
                    <bdo id='g4djL'></bdo><ul id='g4djL'></ul>

                  1. <legend id='g4djL'><style id='g4djL'><dir id='g4djL'><q id='g4djL'></q></dir></style></legend>
                    <tfoot id='g4djL'></tfoot>

                      <small id='g4djL'></small><noframes id='g4djL'>