Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

키보드를 누를 때 카운트 업/다운할 변수를 가져오는 JavaScript 프로그램입니다.


다음은 JavaScript에서 키보드 위/아래 누름에서 변수를 증가 또는 감소시키는 코드입니다 -

예시

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result {
      font-size: 20px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>Changing variable value on keyboad up/down keypress</h1>
<div style="color: green;" class="result"></div&g;
<h3>
Press up or down arrow key to increment/decrement variable
</h3>
<script>
   let dayVal = document.querySelector(".day");
   let resEle = document.querySelector(".result");
   let a = 0;
   resEle.innerHTML = a;
   document.body.addEventListener("keydown", (event) => {
      if (event.keyCode === 38) {
         resEle.innerHTML = ++a;
      }
      else if (event.keyCode === 40) {
         resEle.innerHTML = --a;
      }
   });
</script>
</body>
</html>

출력

위 코드는 다음 출력을 생성합니다 -

키보드를 누를 때 카운트 업/다운할 변수를 가져오는 JavaScript 프로그램입니다.

위쪽 화살표 키를 두 번 누르면 -

키보드를 누를 때 카운트 업/다운할 변수를 가져오는 JavaScript 프로그램입니다.

아래쪽 화살표 키를 몇 번 누르면 -

키보드를 누를 때 카운트 업/다운할 변수를 가져오는 JavaScript 프로그램입니다.