文章
iframe页面js定时器卸载问题
时间:2024-12-17 11:23
阅读:425
在iframe环境下,子页启动定时器可能会存在未卸载干净情况
可在页面增加监听卸载,清除定时器
window.onunload = function(){
console.log('卸载')
}