HTML 下拉 link 在新标签页中打开

HTML drop down link open in new tab

我有这个下载按钮

<a href="" id="user-name" class="link" id="posi">Download</a>

以及与此相关的下拉列表

 <div class="user-name-drop-down drop-down">
        <a href="https://www.google.com">Android</a>
        <a href="https://www.google.com">Apple</a>

    </div>

当单击 android 或苹果时,它会在同一选项卡上打开 link,我希望它在新选项卡中打开。我查了一下 window.open 但仍然不清楚如何使用它。感谢您的帮助。

您可以使用 <a> 的属性来做到这一点,即 target

<a href="https://www.google.com" target="_blank">Android</a>
        <a href="https://www.google.com" target="_blank">Apple</a>

可以参考this link.

希望这对您有所帮助。

<div class="user-name-drop-down drop-down">
    <a href="https://www.google.com" target="_blank">Android</a>
    <a href="https://www.google.com" target="_blank">Apple</a>

</div>

使用此代码。

<div class="user-name-drop-down drop-down">
    <a target="_blank" href="https://www.google.com">Android</a>
    <a target="_blank" href="https://www.google.com">Apple</a>

</div>

试试这个

只需在 <a href="" ></a> 标签中使用 target="_blank"

<div class="user-name-drop-down drop-down">
   <a href="https://www.google.com" target="_blank">Android</a>
   <a href="https://www.google.com" target="_blank">Apple</a>
</div>

使用目标 = _blank 作为

<a target="_blank" href="https://www.google.com">Android</a>
<a target="_blank" href="https://www.google.com">Apple</a>

使用 _blank 在新的 window 或选项卡中打开链接文档。

http://www.w3schools.com/tags/tag_a.asp