首页 > 解决方案 > 如何在 SVG 上添加链接

问题描述

如果使用了 img 标签(HTML、svg、开发),为什么 SVG 文件中的链接会停止工作?如何添加标签中包含的链接 SVG?

在这个拼图中,当我在拼图上移动鼠标时,它会来回结结巴巴。

链接不能正常工作。

标签: htmlcsssvghyperlinkxlink

解决方案


For example

<a href="https://stackoverflow.com/"><svg width="100" height="100">
  <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" />
</svg></a>


推荐阅读