gpt4 book ai didi

JavaScript 帮助 : Simple script won't work when calling setTimeout

转载 作者:行者123 更新时间:2023-12-04 01:46:10 26 4
gpt4 key购买 nike

我想每 2 秒更改一次 span 元素中的 exist,但它只显示 0 情况下的内容:'asd'。

谁能告诉我为什么这不起作用?

var n = 0;

function hideVideoSpan(type){
switch(type)
{
case 0:
{
$("#hideVideoSpan").html('asd');
n = 1;
break;
}

case 1:
{
$("#hideVideoSpan").html('lol');
n = 0;
break;
}

default:break;
}

setTimeout(hideVideoSpan(n), 2000);
}

hideVideoSpan(n);

最佳答案

你调用的是函数,而不是引用

setTimeout(hideVideoSpan(n), 2000);

需要闭包

setTimeout( function(){ hideVideoSpan(n); }, 2000);

关于JavaScript 帮助 : Simple script won't work when calling setTimeout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10465621/

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