Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有链接的svg,例如
<a xlink:href="http://example.com" target="_self"></a>
知道为什么链接作为 iframe 打开而不是像普通的 _self 目标一样打开吗?在我所在的同一窗口中打开链接?
找到了答案
使用 _parent 可以做到这样
<a xlink:href="http://example.com" target="_parent"></a>