gpt4 book ai didi

javascript - for循环javascript后刷新页面

转载 作者:行者123 更新时间:2023-11-28 20:10:23 24 4
gpt4 key购买 nike

我正在尝试在循环完成后刷新页面。我的例子在我犯错误的地方不起作用?

if(this.vpb_browsed_files.length > 0) {
for(var k=0; k<this.vpb_browsed_files.length; k++){
var file = this.vpb_browsed_files[k];
this.vasPLUS(file,0);
if (parseInt(k) == parseInt(this.vpb_browsed_files.length)) {
var refresh = true;
} else {
var refresh = false;
}
}

if (refresh) {
window.location.reload();
}
}

最佳答案

你做了很多多余的事情:

if(this.vpb_browsed_files.length > 0) {
for(var k=0; k<this.vpb_browsed_files.length; k++){
var file = this.vpb_browsed_files[k];
this.vasPLUS(file,0);
}
window.location.reload();
}

您不需要执行parseInt(k),因为变量已经是整数。 this.vpb_browsed_files.length

也是如此

关于javascript - for循环javascript后刷新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20005462/

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