Home  >  Article  >  Web Front-end  >  What is the role of the altKey attribute of keyboard events in JavaScript?

What is the role of the altKey attribute of keyboard events in JavaScript?

王林
王林forward
2023-08-31 09:53:071232browse

What is the role of the altKey attribute of keyboard events in JavaScript?

#The altkey attribute is used to display whether the ALT key is pressed when a keyboard event is triggered.

Example

You can try running the following code to learn how to implement the altKey attribute in JavaScript.

<!DOCTYPE html>
<html>
   <body>
      <input type = "text" onkeydown = "funcAltKey(event)">
      <div id = "res"> Press any key </div>
      <script>
         function funcAltKey(event) {
            var val = document.getElementById("res");
           
            if (event.altKey) {
               val.innerHTML = "ALT key: Pressed";
            } else {
               val.innerHTML = "ALT key: NOT Pressed";
            }
         }
      </script>
   </body>
</html>

The above is the detailed content of What is the role of the altKey attribute of keyboard events in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete