我需要展示一些来自数组的图片(是的,它必须来自任务要求的数组)。该网页向我显示了图像的边框,但没有显示实际图像。作为 JS 的新用户,我在某些事情上失败了,但我知道在哪里。这是我的代码..
function showImg() {
var imagenes = ["/img/sony.jpg", "/img/coke.jpg"];
document.getElementById("showImg_1"). = imagenes;
}
<div class="hero_2">
<div class="subClient">
<h2 class="subClient_1">"Conoce alguno de nuestros clientes..."</h2>
<a class="boton" href="#conocelos" onclick="showImg()">Conocelos</a>
</div>
</div>
<div id="conocelos">
<img id="showImg_1" height="350px" width="200px">
</div>