0
我有一個svg鏈接例如打開鏈接svg與目標_self
<a xlink:href="http://example.com" target="_self"></a>
任何想法爲什麼鏈接以iframe的形式打開,而不是像正常的_self目標那樣行事?在同一個窗口打開我的鏈接?
我有一個svg鏈接例如打開鏈接svg與目標_self
<a xlink:href="http://example.com" target="_self"></a>
任何想法爲什麼鏈接以iframe的形式打開,而不是像正常的_self目標那樣行事?在同一個窗口打開我的鏈接?
找到了答案
使用_parent確實像這樣
<a xlink:href="http://example.com" target="_parent"></a>
的伎倆