我正在尝试将Youtube视频嵌入到我的IOS Cordova项目中..它没有在IPads和Iphone上显示视频。 这是我的代码
<iframe width="100%" height="221.02"
src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0&frameborder=0&allowfullscreen></iframe>
答案 0 :(得分:0)
尝试更改此内容。
<iframe width="100%" height="221.02" src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0" frameborder="0" allowfullscreen></iframe>
对此。
<iframe style="width:100%; height:221px;" src="https://www.youtube.com/embed/uFyaDBmvR8c?showinfo=0" frameborder="0" allowfullscreen></iframe>
答案 1 :(得分:0)
我遇到了同样的问题,我添加了白名单插件:
<plugin name="cordova-plugin-whitelist" source="npm" spec="*"/>
然后白名单上的https访问Youtube:
<allow-navigation href="https://*youtube.com/*"/>
在config.xml文件中。 它现在正在运作。