显示与单击图像不同的图像的图像模态

Image modal that displays different image than the one clicked

我正在学习 W3School 关于如何创建图像模式的教程 (https://www.w3schools.com/howto/howto_css_modal_images.asp)。我想知道是否有一种方法可以编辑他们拥有的代码,以便在单击山的图像时,模态中会显示不同的图像。

上下文:我有一个带有一些文本和一个小图形的图像,单击它时我希望在模态中显示一个不同的表单图像。

有谁知道这是否可行?谢谢

使用您引用的 w3schools 示例,我们可以简单地手动设置模态图像的 src

<!-- Trigger the Modal -->
<img id="myImg" src="img_snow.jpg" alt="Snow" style="width:100%;max-width:300px">

<!-- The Modal -->
<div id="myModal" class="modal">

  <!-- The Close Button -->
  <span class="close">&times;</span>

  <!-- Modal Content (The Image) -->
  <img class="modal-content" src="your-image.jpg">

  <!-- Modal Caption (Image Text) -->
  <div id="caption"></div>
</div>

然后我们可以调整 JavaScript 使 src 属性不被覆盖:

// Get the modal
var modal = document.getElementById("myModal");

// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById("myImg");
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
  modal.style.display = "block";
  //  modalImg.src = this.src; <- Remove this line!
  captionText.innerHTML = this.alt;
}

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
}