Difference between <input type='button' /> and <input type='submit' />

前端 未结 8 2280
不思量自难忘°
不思量自难忘° 2020-11-22 05:17

What is the difference between HTML and ?

8条回答
  •  轮回少年
    2020-11-22 05:30

    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).

提交回复
热议问题