好的,可能还有其他类似的问题,但找不到它。 说实话,我甚至不知道该找什么。
我有以下html:
<html>
<body>
<iframe width="560" height="315"
src="//www.youtube.com/embed/q3rhteIierY" frameborder="0" allowfullscreen>
</iframe>
</body>
</html>
那是所有人。据说这应该有效 但事实并非如此。我在本地运行它,没有网络服务器 我只是想嵌入一个youtube播放器!
有什么建议吗?
答案 0 :(得分:1)
试试这个用于iframe:
<iframe id="ytplayer" type="text/html" width="640" height="390"
src="http://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&origin=http://example.com"
frameborder="0"/>
来自Google开发者网站:https://developers.google.com/youtube/player_parameters
用您自己的值替换网址。
答案 1 :(得分:1)
<iframe width="560" height="315"
src="//www.youtube.com/embed/q3rhteIierY" frameborder="0" allowfullscreen>
</iframe>
答案 2 :(得分:0)
你的src参数缺少http:
试
<iframe width="560" height="315"
src="http://www.youtube.com/embed/q3rhteIierY" frameborder="0" allowfullscreen>
</iframe>