<legend id='5mpZY'><style id='5mpZY'><dir id='5mpZY'><q id='5mpZY'></q></dir></style></legend>
    <tfoot id='5mpZY'></tfoot>

    <small id='5mpZY'></small><noframes id='5mpZY'>

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

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

        Start calling js function when PC wakeup from sleep mode(PC从睡眠模式唤醒时开始调用js函数)
        • <i id='UNqxR'><tr id='UNqxR'><dt id='UNqxR'><q id='UNqxR'><span id='UNqxR'><b id='UNqxR'><form id='UNqxR'><ins id='UNqxR'></ins><ul id='UNqxR'></ul><sub id='UNqxR'></sub></form><legend id='UNqxR'></legend><bdo id='UNqxR'><pre id='UNqxR'><center id='UNqxR'></center></pre></bdo></b><th id='UNqxR'></th></span></q></dt></tr></i><div id='UNqxR'><tfoot id='UNqxR'></tfoot><dl id='UNqxR'><fieldset id='UNqxR'></fieldset></dl></div>

          <tfoot id='UNqxR'></tfoot>
              <bdo id='UNqxR'></bdo><ul id='UNqxR'></ul>

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

                    <tbody id='UNqxR'></tbody>
                  <legend id='UNqxR'><style id='UNqxR'><dir id='UNqxR'><q id='UNqxR'></q></dir></style></legend>
                  本文介绍了PC从睡眠模式唤醒时开始调用js函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  在我的 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函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  SCRIPT5: Access is denied in IE9 on xmlhttprequest(SCRIPT5:在 IE9 中对 xmlhttprequest 的访问被拒绝)
                  XMLHttpRequest module not defined/found(XMLHttpRequest 模块未定义/未找到)
                  Show a progress bar for downloading files using XHR2/AJAX(显示使用 XHR2/AJAX 下载文件的进度条)
                  How can I open a JSON file in JavaScript without jQuery?(如何在没有 jQuery 的情况下在 JavaScript 中打开 JSON 文件?)
                  How do I get the HTTP status code with jQuery?(如何使用 jQuery 获取 HTTP 状态码?)
                  quot;Origin null is not allowed by Access-Control-Allow-Originquot; in Chrome. Why?(“Access-Control-Allow-Origin 不允许 Origin null在铬.为什么?)

                  <small id='8at4b'></small><noframes id='8at4b'>

                  <tfoot id='8at4b'></tfoot>

                    <tbody id='8at4b'></tbody>

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

                          <bdo id='8at4b'></bdo><ul id='8at4b'></ul>