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

JavaScript - Lấy tọa độ của chuột

Để lấy tọa độ của chuột bằng JavaScript, mã như sau -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .sample {
      font-size: 25px;
      font-weight: 500;
   }
</style>
</head>
<body>
<h1>Coordinates of mouse</h1>
<p class="sample"></p>
<h3>Hover the mouse over the screen to get its x and y axis position</h3>
<script>
   let sampleEle = document.querySelector(".sample");
   document.body.addEventListener("mousemove", (event) => {
      sampleEle.innerHTML = "X axis: " + event.x + " Y axis: " + event.y;
   });
</script>
</body>
</html>

Đầu ra

Đoạn mã trên sẽ tạo ra kết quả sau:

JavaScript - Lấy tọa độ của chuột