Computer >> Máy Tính >  >> Lập trình >> Javascript

Tắt phím mũi tên trong vùng văn bản bằng JavaScript.

Sau đây là mã để tắt phím mũi tên trong vùng văn bản trong JavaScript -

Ví dụ

<!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-weight: 500;
      font-size: 18px;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Disabling arrow keys in a text area</h1>
<textarea class="AreaText">
Hello world this is some sample text inside the text area element
</textarea>
<div class="result"></div>
<button class="Btn" style="margin: 15px;">Disable arrows</button>
<h3>Click on the above button to disable scrolling using arrows in the above textArea</h3>
<script>
   let BtnEle = document.querySelector(".Btn");
   let resEle = document.querySelector(".result");
   BtnEle.addEventListener("click", () => {
      window.addEventListener(
         "keydown",
         (event) => {
            if ([32, 37, 38, 39, 40].indexOf(event.keyCode) > -1) {
               event.preventDefault();
            }
         },
         false
      );
      resEle.innerHTML = "Scrolling using arrow keys is disabled";
   });
</script>
</body>
</html>

Đầu ra

Tắt phím mũi tên trong vùng văn bản bằng JavaScript.

Khi nhấp vào mũi tên Tắt, thao tác cuộn sẽ không hoạt động với các mũi tên -

Tắt phím mũi tên trong vùng văn bản bằng JavaScript.