Button type "button" vs. "submit"

40,728

Solution 1

From MDN:

type
The type of the button. Possible values are:

  • submit: The button submits the form data to the server. This is the default if the attribute is not specified, or if the attribute is dynamically changed to an empty or invalid value.
  • reset: The button resets all the controls to their initial values.
  • button: The button has no default behavior. It can have client-side scripts associated with the element's events, which are triggered when the events occur.

As for the difference between button and input:

  • A button can have a separate value as data, while for an input the data and button text are always the same:

    <input type="button" value="Button Text"> <!-- Form data will be "Button Text" -->
    <button type="button" value="Data">Button Text</button>
    
  • A button can have HTML content (e.g. images), while an input can only have text.

  • A button may be easier to tell apart from other input controls (like text fields) in CSS. Note backwards browser compatibility.

    input {
    
    }
    button { /* Always works */
    
    }
    input[type=button] { /* Not supported in IE < 7 */
    
    }
    

Solution 2

A button with type "button" won't submit a form but one with no type or type=submit (the default) will. Buttons with type=submit are nearly the same as inputs with type=submit but buttons are able to contain HTML content.

Solution 3

<input type="button" /> 

buttons will not submit a form - they don't do anything by default. They're generally used in conjunction with JavaScript as part of an AJAX application.

<input type="submit"> 

buttons will submit the form they are in when the user clicks on them, unless you specify otherwise with JavaScript.

when form submit by below code, We should use type=button instead of type=submit to prevent form submit twice.

@using (Html.BeginForm("View", "Controller", FormMethod.Post, new { id = "signupform" }))
        {
         //Form elements
        }

Solution 4

Buttons can be stylized much better than inputs can be used for anchor tags(links).

  • Images
  • Content etc.

Inputs can achieve the same functionality as buttons but uglier design.

Let's say inputs are oldschool, buttons are cooler.

Solution 5

They have different default behaviour regarding submitting form data to the server The button has an attribute named "type" and can contain those values:

submit: Has default behaviour of submitting the form data to the server. This is the default if the attribute is not specified, or if the attribute is dynamically changed to an empty or invalid value.

button: The button has no default behavior. It can have client-side scripts associated with the element's events, which are triggered when the events occur.

Share:
40,728
akantoword
Author by

akantoword

javascript-ninja in training

Updated on November 27, 2020

Comments

  • akantoword
    akantoword over 3 years

    Is there a difference between a button with type="button" vs type="submit"? Are there functional differences, or is it just a descriptive name for easier code reading?

    Is this different than input?