Jsp 点击按钮不跳转

1. 实现如下

<iframe width="0px" height="0px" name="actionframe" style="border: none"></iframe>
<form style=""
      action="echartDemo2.jsp" method="get" onsubmit="return sumbit_sure()" target="actionframe">
    <br>
    Phone&nbsp;Number:<input name="phoneNumber" style="font-size: 15px" type="text" value="18907263863">
    <br><br>
    Start&nbsp;&nbsp;Month:<input name="startMonth" style="font-size: 15px" type="text" onclick="setmonth(this)">
    <br><br>
    End&nbsp;&nbsp;&nbsp;&nbsp;Month:<input name="endMonth" style="font-size: 15px" type="text" onclick="setmonth(this)">
    <input style="right: 10%;background: #12aff0;color: #000000;font-size: 15px;border: none;cursor:pointer;height: 22px"
           type="submit" value="Submit">
    <br>
</form>

2. 备注

<!--
            1.实现点击点击submit不跳转的功能
            2.但是必须满足width=0,height=0这个条件,因为iframe这是一个内联窗口的属性。
            -->