PageTransitionEvent persisted 属性
JavaScript基础 2022-06-08 12:06:15小码哥的IT人生shichen
PageTransitionEvent persisted 属性
实例
确定页面是否被浏览器缓存:
function myFunction(event) {
alert(event.persisted);
}
完整实例:
<!DOCTYPE html>
<html>
<body onpageshow="myFunction(event)">
<h1>Hello World!</h1>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持 onpageshow 事件。</p>
<script>
function myFunction(event) {
if (event.persisted) {
alert("The page was cached by the browser");
} else {
alert("The page was NOT cached by the browser");
}
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
表中的数字注明了完全支持该属性的首个浏览器版本。
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
persisted | 支持 | 11.0 | 支持 | 5.0 | 支持 |
语法
event.persisted
技术细节
返回值: |
布尔值,指示网页是否正在从缓存加载。 可能的值:
|
---|