【问题标题】:How to stop Iframe autoplay如何停止 iframe 自动播放
【发布时间】:2014-11-03 23:45:29
【问题描述】:
这是我的代码:
<iframe frameborder="0" height="650" marginheight="0" marginwidth="0" scrolling="no" src="http://www.1malaysiatv.com.my/embed/player.php?ch=alhijrah&width=920&height=580" width="780" __idm_id__="0"></iframe>
如何让这段代码不能自作主张。我的意思是 autoplay=0 或 autostart=false
我做了很多风格,但无法阻止它播放
【问题讨论】:
标签:
php
html
iframe
streaming
【解决方案1】:
iframe 无法自行播放任何内容,因此您也不能告诉它不要自动播放。 iframe 只是加载一个页面(您提供的 src),并且可以播放的是该页面内的内容,就像在本例中的视频一样。
【解决方案2】:
试试下面的代码
<iframe frameborder="0" height="650" marginheight="0" marginwidth="0" scrolling="no" src="http://www.1malaysiatv.com.my/embed/player.php?ch=alhijrah&width=920&height=580&autoplay=false" width="780" __idm_id__="0"></iframe>