使用Javascript播放HTML5视频

Dav*_*vid 5 html javascript video html5 html5-video

如何使用Javascript播放HTML5视频?

例如,在onclick事件中播放视频.

Som*_*Guy 11

<video id = 'video'>
<!-- Your video's source -->
</video>
<button id='playVid'>Play</button>

<script>
document.getElementById('playVid').onclick = function (){
    document.getElementById('video').play();
};
</script>
Run Code Online (Sandbox Code Playgroud)

将事件监听器添加到它调用的"播放"按钮videoElem.play(),就像我上面所做的那样.