数据提交成功用alert提示,但页面立马就重载了
alert("提交成功!");
window.location.reload();
如何避免?
方法一:
setTimeout 延迟3秒效果:
alert('提交成功!');
setTimeout(function () {
window.location.reload();
}, 3000);
方法二:
(在w3School测试有效,但是在项目中测试还是立马刷新...)
new Promise(function (resolve, reject) {
resolve(alert('提交成功'))
}).then(() => {
window.location.reload();
})