JavaScript DHTML/Event onMethod/onReset — различия между версиями

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

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

"onReset" Example

    
<html>
<body>
<p>Input some text below and click the reset button.</p>
<form name="form1" 
      method="post" 
      action="" onreset="alert("The form is being reset")">
   <input type="text" value="">
   <input type="reset" value="Reset">
</form>
</body>
</html>