在 HTML 中,如果我想做一个链接,我会写:
<a href="http://www.example.com">...</a>
做一个锚我写:
<a name="anchor">...</a>
并做一个链接我写:
<a href="http://www.example.com#anchor">...</a>
但是对于 SVG(对于 XLINK、XPOINTER 也是如此)是非常困难的:
<a xlink:href="http://www.example.com" xlink:show="new">...</a>
但如果我写:
<a xlink:href="http://www.example.com#anchor" xlink:show="new">...</a>
打开的页面只有.com,而不是example.com#anchor,可能有错误吗?而在xlink中,做anchor,一定要加ID吗?
谢谢