Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

บทบาทของ screenX Mouse Event ใน JavaScript คืออะไร?


เมื่อมีการทริกเกอร์เหตุการณ์ เหตุการณ์เมาส์ screenX จะส่งกลับพิกัดแนวนอนของตัวชี้เมาส์

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้งาน screenX เหตุการณ์ของเมาส์ใน JavaScript

<!DOCTYPE html>
<html>
   <body>
      <p onclick = "coordsFunc(event)">Click here to get the x (horizontal) and y (vertical) coordinates of the mouse pointer.</p>
      <script>
         function coordsFunc(event) {
            var x_coord = event.screenX;
            var y_coord = event.screenY;
            var xycoords = "X coords= " + x_coord + ", Y coords= " + y_coord;
            document.write(xycoords);
         }
      </script>
   </body>
</html>