JavaScript Tutorial/Document/onmouseup

Материал из Web эксперт
Версия от 11:24, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

document.onmouseup

The onMouseUp event handler specifies what should happen when the mouse button is pressed and then released within the Document object.



   <source lang="javascript">

<html>

   <head>
   <script language="JavaScript1.2">
   
   </script>
   </head>
   <body>
   press the mouse button and then release it
   </body>
   </html></source>