添加目标=”_blank”
Add target=”_blank”
我正在尝试添加目标 _blank 并保留 link 标题?
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section">Visit our HTML Tutorial</a>
title
s 和 target
s 并不互斥 - 只需在其中添加目标:
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section" target="_blank">Visit our HTML Tutorial</a>
只需在您的标题属性后添加 target=“_blank”。
我正在尝试添加目标 _blank 并保留 link 标题?
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section">Visit our HTML Tutorial</a>
title
s 和 target
s 并不互斥 - 只需在其中添加目标:
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section" target="_blank">Visit our HTML Tutorial</a>
只需在您的标题属性后添加 target=“_blank”。