我从我的网站生成了一封邮件,其中有一些链接target
指定为_blank
<a href="http://example.com" target="_blank">foo</a>
但是当我签入mailinator时,它已更改为_other
<a href="http://example.com" target="_other">foo</a>
问题:我http://example.com
在新标签页中打开了。当我单击电子邮件中发送的链接时,我需要在另一个新选项卡中打开该链接,但它会在http://example.com
已打开的同一选项卡中打开。我怀疑这是因为target="_other"
.
那么,谁能告诉我为什么target
设置为_other
而不是_blank
?
而且我还注意到这个问题在 Microsoft Outlook 中也存在。它将修改
<a></a>
标签的大部分属性。