Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

怎么停止这个for循环中的settimeout

const gc=`在每个寂静的夜里我会想
在你的生命中留下阳光
陪你走过那山高水长
陪你一起生长
`
const t=document.getElementById("t")
const g=gc.split('
')
for (let i=0;i<g.length;i++){ 
 var st =  setTimeout(
()=>{
t.innerHTML='
'+g[i]+'
'+g[i+1]+'
'+g[i+2]+'
'
},1000*i)
}
t.onmouseover=()=>{
    clearTimeout(st)
    return
    }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
const t = document.getElementById("t")
const g = gc.split('
')
const sts = [];
for (let i = 0; i < g.length; i++) {
    sts.push(setTimeout(
        () => {
            t.innerHTML = '
' + g[i] + '
' + g[i + 1] + '
' + g[i + 2] + '
'
        }, 1000 * i));
}
t.onmouseover = () => {
    for (let i = 0; i < sts.length; i++) {
        clearTimeout(sts[i]);
    }
    return
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...