JavaScript Tutorial/Document/onmousedown — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
document.onmousedown
The onMouseDown event handler specifies what should happen when the mouse button is pressed within the Document object.
<html>
<head>
<script language="JavaScript1.2">
<!--
document.onmousedown = myMouseDownHandler;
function myMouseDownHandler() {
alert("A mouse down event took place within the document!");
}
-->
</script>
</head>
<body>
Press the mouse button down within this document.
</body>
</html>