如何使用Javascript在IPAD safari浏览器上控制iframe中的视频

时间:2014-01-27 04:14:11

标签: javascript jquery html ipad iframe

我使用以下代码在iframe中运行视频:

<iframe
    id="videoFrame"
    autoplay
    seamless
    width="100%"
    height="90%"
    src="video/abc.MP4">
<p>Your browser does not support iframes.</p>  
</iframe>

使用上述代码,视频可在所有浏览器和iPad上正常运行。为了控制视频,我使用以下代码:

document.getElementById(
    "videoFrame"
).contentDocument.getElementsByTagName("video")[0].pause();

它适用于所有桌面浏览器。视频暂停点击活动。

但在iPad上它返回undefined

所以,任何人都可以告诉我如何在iPad Safari浏览器中控制iframe中的视频...

1 个答案:

答案 0 :(得分:0)

为iPad使用touchstarttouchmove个活动。

参考this link