我剛剛遵循w3school教程這個bootstrap模態圖像。我的頁面中有兩張圖像卡。所以我需要彈出這兩個圖像。但它只能處理一張圖片。Bootstrap模式圖像不工作 - 多
<!-- Trigger the Modal -->
<img id="myImg" src="http://d14dsi4x2zx6ql.cloudfront.net/files/styles/welcome_image/public/VCW_TI_5_BayLoop_Hero_Manley_1280x642_sized.jpg?itok=EaARDZt8" alt="">
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- The Close Button -->
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img01">
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
我插入我的其他形象 「myImg」 標識,但沒有奏效。第一個圖像彈出如我所料。這裏會缺少什麼?
您不能在頁面上的多個元素上使用相同的ID,因爲它們是唯一的。但是,如果有幫助,您可以使用多個類。 – Lee
爲什麼這個問題有'boo'標籤? – Headcrab