<pre name="code" class="html">jsp:页面例如:
<input type="submit" value="提交" onclick="saveInfo();"/>
其实我已经在onclick方法中用ajax提交了。下面贴出组织form提交的方法
1、阻止事件继续;
将input改为:
<input type="submit" value="提交" onclick="saveInfo(event);"/>然后在saveInfo中加入event.preventDefault();
2、将input改为:
<input type="submit" value="提交" onclick="return saveInfo();"/>然后在saveInfo中返回return false;