问题:为什么这段代码在火狐或者Webkit浏览器
<form method="post" action=""> <input type="text" name=""> <button>123</button> </form>
原因:
<button type="button">123</button>
要有type="button"才不会,否则在form中会被当成提交按钮
本文共 236 字,大约阅读时间需要 1 分钟。
问题:为什么这段代码在火狐或者Webkit浏览器
<form method="post" action=""> <input type="text" name=""> <button>123</button> </form>
原因:
<button type="button">123</button>
要有type="button"才不会,否则在form中会被当成提交按钮
转载于:https://my.oschina.net/u/2246951/blog/806957