gpt4 book ai didi

javascript - 在 javascript 中,图像必须随 var lvl 更改,但事实并非如此

转载 作者:行者123 更新时间:2023-12-02 15:18:09 25 4
gpt4 key购买 nike

总的来说,我在 javascript 和网络编程方面都是新手。我正在尝试制作脚本,该脚本将根据 var lvl 的值更改图像 pic0.png

这是脚本:

<!DOCTYPE html>
<html>
<body>

<script>
var pic = "pic0.png";
</script>

<img id="myImg" src="pic0.png" width="107" height="98">
<p>Click the button to change the value of the src attribute of the image.</p>

<button onclick="myFunction()">Try it</button>

<script>

function myFunction()
{
var lvl = 2;
if (lvl = 1)
{
pic = "pic1.png";
}
else if (lvl = 2)
{
pic = "pic2.jpg";
}
document.getElementById("myImg").src = pic;
}

</script>

</body>
</html>

var lvl等于2时,图片必须更改为pic2.jpg,但是有问题 - 在我单击“尝试一下!”按钮后,图片发生变化到 pic1.png,无论 var lvl 等于 2 还是 1。

最佳答案

您正在分配值而不是检查。您需要使用双等于运算符:

function myFunction() 
{
var lvl = 2;
if (lvl == 1)
{
pic = "pic1.png";
}
else if (lvl == 2)
{
pic = "pic2.jpg";
}
document.getElementById("myImg").src = pic;
}

关于javascript - 在 javascript 中,图像必须随 var lvl 更改,但事实并非如此,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34308719/

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