gpt4 book ai didi

html - 使图像链接可在新标签页中打开

转载 作者:太空宇宙 更新时间:2023-11-04 13:34:04 25 4
gpt4 key购买 nike

我有以下 HTML 模板:

<div class='item'>
<img href='...' attributes='...' \>
<div class='popup' attributes='...'>
</div>
</div>

我使用 Jquery 将鼠标悬停在 div(以及图像)上,并显示弹出窗口。问题是,我似乎无法控制+单击以在 chrome 或 firefox 的新选项卡中打开;我也不能右键单击图像并在新选项卡中打开链接。我该怎么做?

最佳答案

target="_blank" 添加到链接中。它应该看起来像这样:

<div class='item'>
<a href='...' target="_blank"><img src='....' attributes='...' \></a>
<div class='popup' attributes='...'>
</div>
</div>

您希望打开图片的链接在 a href='LINK' 中,图片的文件路径在 img src='PATH' 中/p>

关于html - 使图像链接可在新标签页中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11639335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com