vote up 10 vote down star
2

There is no such thing as a stupid question, so here we go: What is the difference between between <input type='button' /> and <input type='submit' />?

flag

3 Answers

vote up 18 vote down check

<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 specifiy otherwise with JavaScript.

link|flag
Also browsers can capture the "Enter" keypress on a form and submit the form automatically if there is a submit button, but not otherwise. – Mr. Shiny and New Nov 14 '08 at 14:49
They also do that if you have a type="image", which can be used to trigger a form-submission when clicked on. – jishi Nov 14 '08 at 14:53
Mr. Shiny and New: Forms can be submitted via the enter key without any buttons. It's enough to have focus on a text input, for instance. – _Lasar Nov 14 '08 at 15:03
There's also an actual button element that can also be used to submit forms when clicked. w3.org/TR/REC-html40/… – R. Bemrose Nov 14 '08 at 15:05
You can use BUTTON elements, although (surprise surprise) there are a few issues with them when using Everyone's Favourite Browser (IE). Worth knowing about though. – Phill Sacre Nov 14 '08 at 15:27
vote up 0 vote down

The question here is maybe more relevant if you asked, "what is the difference between a submit-button and a <button>label</button>", since a <button> also submits the form by default.

link|flag
1  
The HTML <button> element doesn't submit a form on its own, mate... – Hexagon Theory Jan 27 at 5:25
Actually, it does in some browsers. Having a form, without a submit-button but instead a <button> will apply submit-functionality to it. Firefox has this behaviour. – jishi Jan 28 at 10:38
When reading W3C spec this is actually default behaviour, since buttons has a type-attribute which defaults to "submit". – jishi Jan 28 at 10:41
vote up 3 vote down

A 'button' is just that, a button, to which you can add additional functionality using Javascript. A 'submit' input type has the default functionality of submitting the form it's placed in (though, of course, you can still add additional functionality using Javascript).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.