JavaScript Reference/Javascript Methods/reset — различия между версиями

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

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

"reset()" Example

    
<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>



"reset()" is applied to

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



"reset()" Syntax, Parameters and Note

Note:
Restores all form elements to their default values.
    
Syntax:
    
document.formID.reset()
document.all.formID.reset() // IE only