在form表单中,button标签在IE浏览器 type类型默认是button ,而在其他浏览器默认是submit。
解决方法1:
设置类型type="button"
<button type="button" class="btn btn-warning">test</button>
解决方法2:
将button标签改为其他标签
(1)改为a标签
(2)改为input标签(类型同样要设置为button)
<input type="button" class="btn btn-warning" value="test"/>