Youtube/SoundCloud 视频在点击时在新标签页中打开

Youtube/SoundCloud video open in new tab when clicked

我正在尝试向我的 Tumblr 页面添加一种方式,当点击 YouTube 视频或 SoundClouds 时,它会打开到另一个 window。我不知道该怎么做。 这是我用于 SoundCloud

的代码示例
<a href="{text:Link Two}" target="_blank"class="links">{text:Link Two Title}</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

如果您希望它在另一个 window 中打开,为什么不 link 而不是使用 iframe?使用 iframe 是为了在 特定 范围内 area[=25] =] 相同 window.

尝试这样的事情:

<a href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/188684529&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true" target="_blank"></a>

target 属性设置为 _blank 应该会在新的 window 中打开 link。

寻找锚标签,即<a>

这应该可以解决问题。

查看下面的代码:

<html>
<body>
<a href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/188684529&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true" target="_blank">Sound Cloud</a>
</body>
</html>

希望对您有所帮助