form 提交页面不刷新实现
// no redirect
<\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

浙公网安备 33010602011771号