form表单里的按钮,明明是button而不是input type = submit,点击还是提交,如何让它不提交?
情况一:
一定到加上type
属性
<button type="button"></button>
情况二:
若type
为sumit属性,将代码改为
<button type="submit" class="submit_button" onClick=“submitAction();return false;”>登录</button>
一定到加上type
属性
<button type="button"></button>
若type
为sumit属性,将代码改为
<button type="submit" class="submit_button" onClick=“submitAction();return false;”>登录</button>