YouTube视频无法在Android,IOS移动设备中正确显示

时间:2013-01-28 08:05:06

标签: jquery html html5

我使用以下代码嵌入管视频,Iframe标记未在移动设备中加载视频。

  <!DOCTYPE html>
  <html>
  <head><title></title>
  </head>
  <body>
    <iframe width="853" height="480" src="http://www.youtube.com/v/RaQV6iQwC7Y?version=3&amp;autohide=1&amp;autoplay=0" frameborder="0" allowfullscreen="">
    </iframe>
  </body>
  </html>

请建议我如何显示IOS,Android,平板电脑和桌面浏览器的YouTube视频。

1 个答案:

答案 0 :(得分:0)

以下是在网页上嵌入Youtube视频的Youtube指南:https://developers.google.com/youtube/player_parameters

我通常使用YT API嵌入视频,但要在iOS设备上处理视频,我使用iFrame嵌入代码,如下所示:

<iframe width="width here" height="height here" border="0" src=' + ('https:' == document.location.protocol ? 'https' : 'http') + '://www.youtube.com/embed/' + VIDEOID here + '&autoplay=1&showinfo=0" frameborder="0" allowfullscreen></iframe>