搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

event.keyCode not working on Firefox 65.0.1

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

所有回覆 (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.