我有需要与URL交互的svg图像。我使用的网址是相对的。
所以我从这样的文件加载svg图像:
<object data="../_images/some_image.svg" type="image/svg+xml">
...
<a xmlns="http://www.w3.org/2000/svg" href="home/hello.html" target="_top" xlink:actuate="onRequest" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="new" xlink:type="simple">
...
</a>
...
</object>
如您所见,它包含一个指向home/hello.html
的相对URL。此类url函数与svg所在的位置有关。这不是我所需要的,它应该相对于包含该svg的html文档。有没有办法实现这一目标?