JavaScript Reference/Javascript Methods/reset

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

"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