Button type “button” vs. “submit”

前端 未结 6 1867
北荒
北荒 2020-11-30 06:04

Is there a difference between a button with type=\"button\" vs type=\"submit\"? Are there functional differences, or is it just a desc

6条回答
  •  暖寄归人
    2020-11-30 06:17

    buttons will not submit a form - they don't do anything by default. Button won't submit form on its own.It is a simple button which is used to perform some operation by using javascript whereas Submit is a kind of button which by default submit the form whenever user clicks on submit button.

提交回复
热议问题