JavaScript Reference/Javascript Properties/clientY — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"clientY" Example
<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;">
<br>
Y Coordinate:
<input type="text" value="" id="myY" style="border:none;">
</body>
</html>
"clientY" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |event |
+----------------+--------------------------------------------------------------+
"clientY" Syntax and Note
Note:
Read and write properties.
Sets the Y coordinates of the mouse pointer"s position
Syntax:
window.event.clientX = value
window.event.clientY = value