Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

event.keyCode not working on Firefox 65.0.1

  • 1 ответ
  • 1 имеет эту проблему
  • 11 просмотров
  • Последний ответ от 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

Все ответы (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.