我创建了一个 html 文件,其中包含所有照片和另一个 html 文件,其中我只看到 1 张全尺寸图像。现在,如果我单击第一个文件中的一个图像,我希望使用第一个文件中的他的 src 将这些图像打开到第二个 html 页面中,我想使用 javascript。(是的,我知道我可以创建 20 个 html 文件,每个文件都有不同的照片,但我只想使用 1 个 html 文件)
文件 1 = “index.html”:
<a href="work_detail.html" ><img src="images/templatemo_image_01_big.jpg" alt="image"
width="100%" height="100%" id="pic1" onClick="hello();" /></a>
文件 2 =“work_detail.html”:
<a target="_parent"><img src="" alt="product" id="work" /></a>
JavaScript:
function hello(){
var pic1 = document.getElementById('pic1').src;
document.getElementById('work').src= pic1;
}
如何使用 JavaScript 将第一个 id 与它们位于不同文件中的第二个 id 连接起来?