如何从 SVG 链接?
我尝试的是这个
<a xlink:target="http://ponyoverflow.com">
<text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text>
</a>
以及 href
和 type="simple"
的变体。
出现链接文本,但该链接不可单击。 我尝试了 Firefox 3.5.5、Chromium、Inkscape 和 GNOME 图像查看器。
语法是否有问题,如果没有,是否有任何应用程序支持链接 SVG?
What I tried is this
<a xlink:target="http://ponyoverflow.com">
<text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text>
</a>
and variations with href
and type="simple"
.
The link text appears, but the link is not clickable.
I tried Firefox 3.5.5, Chromium, Inkscape and GNOME Image Viewer.
Is there anything wrong with the syntax and if not is there any application that supports links in
SVG?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
...并确保 svg 根元素上有一个属性
xmlns:xlink="http://www.w3.org/1999/xlink"
。Try this:
...and make sure you have an attribute
xmlns:xlink="http://www.w3.org/1999/xlink"
on the svg root element.