JavaScript Reference/Javascript Methods/reset

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

"reset()" Example

   <source lang="javascript">
   

<html> <body> <script language="JavaScript">

   function function1(){
       document.all.myForm.reset();
   }

</script> <form name="myForm" method="post" action=""> <input type="text" size="50" value="Type something here"> <input type="button" value="reset" onClick="function1();"> </form> </body> </html>


     </source>
   
  


"reset()" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<form> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"reset()" Syntax, Parameters and Note

   <source lang="javascript">

Note: Restores all form elements to their default values.

Syntax:

document.formID.reset() document.all.formID.reset() // IE only


     </source>