<button>
与<input type="button">
都具备按钮的功能与样式,区别如下:
- 如果在普通标签中使用,两者没有区别
- 如果在form表单中使用,
<input type="button">
不会提交表单,而<button type="submit">
或者<button>
(默认type="submit")会引起表单的提交。 <button type="button"> <button type="reset">
不会引起表单提交。- input的值需要设置value:
<input type="button" value="点击">
,button则在标签中间,<button>点击</button>