JavaScript Reference/Javascript Properties/clientX

Материал из Web эксперт
Перейти к: навигация, поиск

"clientX" Example

   <source lang="javascript">
   

<html> <body> <script language="JavaScript"> function function1() {

   myX.value = window.event.clientX;
   myY.value = window.event.clientY; 

} </script> <body onmousemove="function1();"> X Coordinate: <input type="text" value="" id="myX" style="border:none;">
Y Coordinate: <input type="text" value="" id="myY" style="border:none;"> </body> </html>


     </source>
   
  


"clientX" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |event | +----------------+--------------------------------------------------------------+

     </source>
   
  


"clientX" Syntax and Note

   <source lang="javascript">

Note: Read and write properties. Sets the X coordinates of the mouse pointer"s position

Syntax:

window.event.clientX = value window.event.clientY = value


     </source>