Az oldal korlátolt funkcionalitással fog rendelkezni, amíg elvégezzük a felhasználói élményt javító karbantartást. Ha egy leírás nem oldja meg a problémáját, és kérdést tenne fel, akkor a támogatási közösségünk a @FirefoxSupport Twitter oldalon tud segíteni, vagy az /r/firefox oldalon a Redditen.

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

event.keyCode not working on Firefox 65.0.1

  • 1 válasz
  • 1 embernek van ilyen problémája
  • 3 megtekintés
  • Utolsó üzenet ettől: Wesley Branton

more options

Hello,

I have a system for years already, using java script event.keyCode and always worked well.

After the new upgrade for Firefox 65.0.1, the function event.keyCode stops to work.

What happened? How can I solve this issue?

Thank you

Hello, I have a system for years already, using java script event.keyCode and always worked well. After the new upgrade for Firefox 65.0.1, the function event.keyCode stops to work. What happened? How can I solve this issue? Thank you

Összes válasz (1)

more options

This isn't really a direct answer to your question, but the event.keyCode API is obsolete at this point. This means that future versions of web browsers may eventually drop this feature. That's not the case right now, since I checked and it's still working for me.

However, you should consider using the new event.key API instead. It's actually a little better because it will return the key value. For example, pressing the F key will return "f" instead of "70".

As for your specific issue, it's difficult to troubleshoot since it's very dependent on your specific code. All I can tell you is that the API is still working fine, so it's more likely a code-specific issue than a Firefox-specific issue.

Hope this helps.