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>
通常の _self ターゲットのように振る舞うのではなく、リンクが iframe として開く理由は何ですか? 私がいるのと同じウィンドウでリンクを開きますか?
答えを見つけた
_parent を使用すると、次のようになります
<a xlink:href="http://example.com" target="_parent"></a>