js实现表单提交后不重新刷新当前页面

如何实现表单提交后不重新刷新当前页面

<form action='/xbcw/cw/xx_xx.action' method='post'>   <input type="button" value="保存" />   <input type="button" value="下一步" /> </form>

当我点击保存提交FORM表单后,如何让当前页面维持不变(即不刷新当前页)?

在FORM表单后添加一个iframe

  <iframe src="https://www.jb51.net/about:blank"></iframe>

点保存提交事件里面需要将target改为iframe的名字:

  JS:document.forms[0].target="rfFrame";

JQuery:$("#f2").attr("target","rfFrame");

这样即提交了FORM保存了数据,页面也不会跳转.

以上就是本文的全部内容,希望对大家有所帮助,同时也希望多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwxgsy.html