如何打开html page2,点击html page1中的图像

How to open html page2, onclicking an image in html page1

本文关键字:html page1 图像 何打开 page2 点击      更新时间:2023-09-26

如何在相同的html page1中打开html page2,当点击html page1中的任何图像

在锚点周围编码图像,如下所示

<a href="/yourURL.html"><img src="yourimg.jpg" alt="pic" /></a>

你可以用url为"page2"的链接标签来包装你的图片。

<a href="page2"><img src="image/source" alt="page2" /></a>