JavaScript Tutorial/Document/onmousedown — различия между версиями

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

Текущая версия на 11:24, 26 мая 2010

document.onmousedown

The onMouseDown event handler specifies what should happen when the mouse button is pressed within the Document object.



   <source lang="javascript">

<html>

   <head>
   <script language="JavaScript1.2">
   
   </script>
   </head>
   <body>
   Press the mouse button down within this document.
   </body>
   </html></source>