在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中,要做一个锚点,必须添加ID吗?
由于