gpt4 book ai didi

javascript - 无法在 onload 属性中声明变量

转载 作者:行者123 更新时间:2023-12-03 06:21:08 24 4
gpt4 key购买 nike

我正在创建一个网页,其中图像水平移动,直到按下“停止我”按钮。

<html>
<head>
<script>
var count = 0;
function move(){
image = document.getElementsByTagName("img")[0];
count++;
image.style.left = count;
}
</script>
</head>
<body onload = "var temp = setInterval(move,1)">
<img src = "facebook_icon.png" style = "position:absolute; left = 0; top:0;">
<br>
<button onclick = "clearInterval(temp);">Click here to stop the loop.</button>
</body>
</html>

当我从 onload 属性中删除 var 关键字时,代码运行正常。新代码:-

<html>
<head>
<script>
var count = 0;
function move(){
image = document.getElementsByTagName("img")[0];
count++;
image.style.left = count;
}
</script>
</head>
<body onload = "temp = setInterval(move,1)">
<img src = "facebook_icon.png" style = "position:absolute; left = 0; top:0;">
<br>
<button onclick = "clearInterval(temp);">Click here to stop the loop.</button>
</body>
</html>

为什么会这样?

最佳答案

这是一个范围问题:属性中声明的变量不是全局的,例如:

<body onload = "var temp = 'hello'; alert(temp);">
<button onclick = "alert(temp);">Click</button>
</body>

在上面的示例中,页面加载时,警报将显示消息 hello。但是,当您单击该按钮时,您会收到此错误 Uncaught ReferenceError: temp is not Defined。这意味着变量 temp 不可访问(不是全局的)。

但是,为未声明的变量赋值会隐式将其创建为全局变量,这就是您的第二个示例工作正常的原因:

关于javascript - 无法在 onload 属性中声明变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38870646/

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