标签: svg xlink
我有一个带有链接的svg,例如
<a xlink:href="http://example.com" target="_self"></a>
知道为什么链接作为iframe打开而不是像普通的_self目标一样?在我所在的同一窗口打开链接?
答案 0 :(得分:0)
找到答案
使用_parent就是这样的伎俩
<a xlink:href="http://example.com" target="_parent"></a>