SVG 链接
给文本添加超链接
svg
<svg height="30" width="200" xmlns="http://www.w3.org/2000/svg">
<a href="https://www.orzzone.com/" target="_blank">
<text x="5" y="15" fill="red">I love SVG!</text>
</a>
</svg>
1
2
3
4
5
2
3
4
5
给图形添加超链接
svg
<svg height="100" width="200" xmlns="http://www.w3.org/2000/svg">
<a href="https://www.orzzone.com/" target="_blank">
<circle r="45" cx="50" cy="50" fill="red" />
</a>
</svg>
1
2
3
4
5
2
3
4
5