gpt4 book ai didi

javascript - 如何在javascript中检查页面的加载时间?

转载 作者:行者123 更新时间:2023-12-03 00:24:03 26 4
gpt4 key购买 nike

在我的场景中,我有三个页面,其中一个页面在 5 秒后加载另一个页面,现在我希望当所有三个页面加载 200 次时我想停止进一步加载页面,如何使用来实现这一点javasvript 以下是我的代码。

page1.html

 <html>
<head>
<title>Page1</title>
</head>

<body>
<h1>Hello, This is page 1.</h1>
<div id="redirect" style="color: red;"></div>
<p>page 1</p>
<script type="text/javascript">

function Redirect()
{

window.location="page2.html";

}

document.getElementById('redirect').innerHTML= " wait... You will be redirected to page 2 within 5 second"
setInterval('Redirect()', 5000);
</script>
</body>
</html>

Page2.html

<html>
<head>
<title>Page2</title>
</head>

<body>
<h1>Hello, This is page 2</h1>
<div id="redirect" style="color:red;"></div>
<p>page 2</p>
<script type="text/javascript">
function Redirect()
{
window.location="page3.html";
}
document.getElementById('redirect').innerHTML= "wait... You will be redirected page3 withing 5 seconds";
setInterval('Redirect()',5000);
</script>
</body>
</html>

page3.html

 <html>
<head>
<title>Page3</title>
</head>

<body>
<h1>Hi This is page 3.</h1>
<div id="redirect" style="color:red;"></div>
<p>page 3</p>
<script type="text/javascript">
function Redirect()
{
window.location="page1.html";
}
document.getElementById('redirect').innerHTML = "You will be redirected to page 1 within 5 second.";
setInterval('Redirect()', 5000);
</script>
</body>
</html>

最佳答案

不确定你的最终目标是什么,但我打赌你可以通过设置某种 cookie var 或 sessionStorage 来跟踪每个页面加载的次数。在每个页面中。

例如...

// Do this for each page. (add to bottom of each page, renaming the sessionStorage names for each).

// See if we have a pageLoadedCount value
if (sessionStorage.getItem("pageLoadedCount")) {
var addPageLoadCount = sessionStorage.getItem("pageLoadedCount") + 1;
sessionStorage.setItem("pageLoadedCount", addPageLoadCount);
}else{
sessionStorage.setItem("pageLoadedCount", 1);
}

关于javascript - 如何在javascript中检查页面的加载时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54166619/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com