setInterval()方法使用,该方法是计时函数,我这里理解为延迟函数 ,

本次应用场景为: 弹框出现之后, 需要跳转到新页面,本身弹框设置的时间为2秒,但是由于需要跳转到新页面,就导致弹框一闪而过
所以为了让弹框保持的时间正常, 就可以在跳转新页面家上该方法,该方法就会延迟执行
例如:

openArtdilag(0, "成功", 2000);
setInterval(function () {
    window.location.href = webRootPath + '/system/tolBusinessStandard/index';
}, 1500)
posted @ 2022-06-24 18:40  怎言笑i  阅读(21)  评论(0编辑  收藏  举报