Form.submit() : Form Object « Form « JavaScript Tutorial






The submit method of the Form object is used to submit a form.

It operates the same as if a Submit button was clicked.

<html>
    <head>
    <title> Using the submit method for the Form object</title>
    </head>
    <body>
    <script language="JavaScript">
    <!--
    function submitForm(form){
        document.form1.submit(form);
    }
    -->
    </script>
    <form name= "form1" method="post" action="http://www.java2s.com">
    This is a sample form
    <br><br>
    Name:<input type="text" size="40" name="name">
    <br>
    Age:<input type="text" size="3" name="age">
    <br>
    Phone Number:<input type="text" size="10" name="phone">
    <br><br>
    <input type= "button" value="Submit" onclick = submitForm(this.form)>
    </form>
    </body>
    </html>








10.2.Form Object
10.2.1.Form
10.2.2.Using the Forms Array
10.2.3.Form.action
10.2.4.Form.elements
10.2.5.Form.elements.length
10.2.6.form.encoding
10.2.7.Form.handleEvent()
10.2.8.Form.length
10.2.9.Form.method
10.2.10.Form.name
10.2.11.Form.onReset
10.2.12.Form.onSubmit
10.2.13.Form.reset()
10.2.14.Form.submit()
10.2.15.Form.target