این محتوا تنها در این زبانها موجود است: English, Español, Français, Italiano, 日本語, Русский, Türkçe, Українська, 简体中文. لطفاً به ما
We should use two handlers: document.onkeydown
and document.onkeyup
.
Let’s create a set pressed = new Set()
to keep currently pressed keys.
The first handler adds to it, while the second one removes from it. Every time on keydown
we check if we have enough keys pressed, and run the function if it is so.