gpt4 book ai didi

javascript - 如何加载 window.open ('url' ) once only PHP & JQuery

转载 作者:可可西里 更新时间:2023-11-01 00:54:17 24 4
gpt4 key购买 nike

我现在的问题是页面像循环一样加载。它不停地弹出页面,我怎么能在触发时间 <= 0 后只加载一次?谢谢。

这是我的代码的样子。

<script type="text/javascript">
var timeleft = 10;
var downloadTimer = setInterval(function(){
document.getElementById("progressBar").value = 10 - timeleft;
timeleft -= 1;

if(timeleft <= 0)

clearInterval(downloadTimer);
window.open("http://localhost/ppa/movies.php", "", "width=1500px,height=1000px",true);
}, 1000);

</script>

最佳答案

我猜你忘记了一些 {} 而打算写:

{
...
if (timeleft <= 0) {
clearInterval(downloadTimer);
window.open("http://localhost/ppa/movies.php", "",
"width=1500px,height=1000px",true);
}
}, 1000);

关于javascript - 如何加载 window.open ('url' ) once only PHP & JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54704658/

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