我正在尝试添加保留链接标题的目标_blank?
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section">Visit our HTML Tutorial</a>
发布于 2020-07-05 03:52:29
title
s和target
s不是互斥的-只需在其中添加目标:
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section" target="_blank">Visit our HTML Tutorial</a>
发布于 2020-07-05 03:53:24
只需在标题属性后添加target=“_blank”即可。
https://stackoverflow.com/questions/62733741
复制相似问题