Web 接口
PageTransitionEvent - 在加载或卸载文档时会触发的事件
实例
源代码:
点击运行 »
<!DOCTYPE html> <html> <body onpageshow="myFunction(event)"> <script> function myFunction(event) { if (event.persisted) { alert("该页面已被浏览器缓存"); } else { alert("该页面未被浏览器缓存"); } } </script> </body> </html>
运行结果:
点击运行 »