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>
如果您希望它在另一个 window 中打开,为什么不 link 而不是使用 iframe
?使用 iframe
是为了在 特定 范围内 area[=25] =] 相同 window.
尝试这样的事情:
<a href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/188684529&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&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&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true" target="_blank">Sound Cloud</a>
</body>
</html>
希望对您有所帮助
我正在尝试向我的 Tumblr 页面添加一种方式,当点击 YouTube 视频或 SoundClouds 时,它会打开到另一个 window。我不知道该怎么做。 这是我用于 SoundCloud
的代码示例<a href="{text:Link Two}" target="_blank"class="links">{text:Link Two Title}</a>
如果您希望它在另一个 window 中打开,为什么不 link 而不是使用 iframe
?使用 iframe
是为了在 特定 范围内 area[=25] =] 相同 window.
尝试这样的事情:
<a href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/188684529&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&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&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true" target="_blank">Sound Cloud</a>
</body>
</html>
希望对您有所帮助