对此功能有什么问题感到有些困惑,因为它无法正常运行。(请原谅双关语) javascript 和一般编程的新手。
基本上它应该做的是根据列表选择更改页面上的两个图像,但是即使选择了 option1,它也默认为 option2 的图像。我这样做对吗?
function check(){
if (value = "option1"){
document.getElementById("image_1").src="http://www.website.com/image1.jpg";
document.getElementById("image_2").src="http://www.website.com/image1-1.jpg";
}
else
if (value = "option2"){
document.getElementById("image_1").src="http://www.website.com/image2.jpg";
document.getElementById("image_2").src="http://www.website.com/image2_2.jpg";
}
}
编辑:拼写。