gpt4 book ai didi

javascript - 我的代码声称有一个意外的 token

转载 作者:行者123 更新时间:2023-12-02 22:30:20 27 4
gpt4 key购买 nike

    <html>
<head>
<title>lorem ipsum</title>
<style type="text/css">
body{
background-color:#222222;
margin:0px;
padding:0px;
}
#typed{
color:red;
font-size:150%;
float:left;
}
.cursor{
height:24px;
width:2px;
background:lawngreen;
float:left;
opacity:0;
animation:blink 0.75s linear infinite alternate;

}
@keyframes blink{
50% {
opacity:0;
}
100% {
opacity:1;
}
}

</style>
</head>
<body>
<div id="typed"></div>
<div class="cursor"></div>

</body>
<script type="text/javascript">
var i;
var txt='lorem ipsum';
var speed=50;

for (i=0; i<txt.length;i++){
setInterval(addLetter("typed"),speed);
}


function addLetter(word){
document.getElementById(word).innerHTML += txt.charAt(i);
i++;
}
</script>
</html>

我不明白为什么它认为这是错误的,但也许我只是错过了一些东西。 Chrome 告诉我该错误是 for 循环中未捕获的语法错误,它说错误是“)”。我一整天都在想办法解决这个问题。

编辑:我想做的是让变量“txt”中的文本在屏幕上弹出,就像打字一样。我用下面的建议修复了它

最佳答案

更改,通过;在for循环中。
for (i=0; i<txt.length;i++){
另外,删除 }之前</script> .

关于javascript - 我的代码声称有一个意外的 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58926212/

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