搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

settimeout never pops

  • 2 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 jamescobban

more options

I have a piece of code which has worked fine since I wrote it almost 20 years ago and which has only been fine tuned as the standards for JavaScript have been refined over those two decades. The functionality is to act when the user stops typing into a textbox for 0.9 seconds, which by trial and error I found was fast enough to act without premature invocation because the user was just typing slowly.

```javascript // in the initialization code element.addEventListener('keydown', onKeyDownName); ... function onKeyDownName(event) {

   if (timer)
       clearTimeout(timer);
   timer   = setTimeout(update, 900);
   alert("nominalIndex.js: onKeyDownName: timer=" + timer)

} // function onKeyDownName

function update() {

   alert("nominalIndex.js: update:");
   // perform the function

} ```

The alerts are only inserted, on my private test site only, to try and debug why this code is no longer working. Each time I type a character I see the alert "nominalIndex.js: onKeyDownName: timer=nnn" but no matter how long I wait I never see the alert "nominalIndex.js: update:". To get the function to work the user must take some other action which causes the function update to be called. There are no messages in the log to explain why the timer isn't popping. How can I debug this?

The code works on Chromium 87.0.4280.88 but doesn't work on FireFox 83.0 build id 20201112153044. I am running Ubuntu Linux 20.04

See this code in action at www.jamescobban.net/FamilyTree/nominalIndex.php?name=Culbert%2C%20Su&treename=&lang=en

I have a piece of code which has worked fine since I wrote it almost 20 years ago and which has only been fine tuned as the standards for JavaScript have been refined over those two decades. The functionality is to act when the user stops typing into a textbox for 0.9 seconds, which by trial and error I found was fast enough to act without premature invocation because the user was just typing slowly. ```javascript // in the initialization code element.addEventListener('keydown', onKeyDownName); ... function onKeyDownName(event) { if (timer) clearTimeout(timer); timer = setTimeout(update, 900); alert("nominalIndex.js: onKeyDownName: timer=" + timer) } // function onKeyDownName function update() { alert("nominalIndex.js: update:"); // perform the function } ``` The alerts are only inserted, on my private test site only, to try and debug why this code is no longer working. Each time I type a character I see the alert "nominalIndex.js: onKeyDownName: timer=nnn" but no matter how long I wait I never see the alert "nominalIndex.js: update:". To get the function to work the user must take some other action which causes the function update to be called. There are no messages in the log to explain why the timer isn't popping. How can I debug this? The code works on Chromium 87.0.4280.88 but doesn't work on FireFox 83.0 build id 20201112153044. I am running Ubuntu Linux 20.04 See this code in action at www.jamescobban.net/FamilyTree/nominalIndex.php?name=Culbert%2C%20Su&treename=&lang=en

被采纳的解决方案

Noting that on a second computer with the same version of Firefox installed the script worked properly I rebooted my system and now the script works. in FF 83.0. I guess this was just the sort of minor corruption that even Linux is susceptible to.

定位到答案原位置 👍 0

所有回复 (2)

more options

As far as I tested your code it works as expected in firefox 84 and 82 on linux (don't have 83 rn), also in chrome. Also the website work similarly in chrome an ff. You can step through the event functions or add some proxy for those event handlers to investigate. Maybe an extension doing something?

more options

选择的解决方案

Noting that on a second computer with the same version of Firefox installed the script worked properly I rebooted my system and now the script works. in FF 83.0. I guess this was just the sort of minor corruption that even Linux is susceptible to.