form 提交页面不刷新实现

// no redirect









页面form提交不刷新



<\iframe name="J_iframe" width="100" height="100"> </\iframe>






解决被iframe时submit请求是iframe提交不是form提交问题
setTimeout(() => {
this.initForm.submit();
}, 10);

无刷新更换浏览器地址:
window.history.pushState(null, null, window.self.location); // 解决不能被iframe问题

doc: https://ctrlq.org/code/19233-submit-forms-with-javascript

posted @ 2019-08-07 14:48  Amy_Li  阅读(3084)  评论(0)    收藏  举报