单击时,Youtube / SoundCloud视频将在新选项卡中打开

时间:2015-03-08 19:12:03

标签: javascript html youtube soundcloud

我正在尝试向我的Tumblr页面添加一种方式,当点击youtube视频或SoundClouds时,它将打开到另一个窗口。我无法弄清楚如何做到这一点。 以下是我用于SoundCloud

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

2 个答案:

答案 0 :(得分:0)

如果您希望它在另一个窗口中打开,为什么不链接到它而不是使用iframe?使用iframe适用于您希望在同一窗口的 区域 具体 的情况。

尝试这样的事情:

<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应该会在新窗口中打开链接。

答案 1 :(得分:0)

寻找锚标记,例如<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>

希望这有帮助