我需要将 YouTube 视频作为 HTML5 中视频标签的来源,一旦视频播放完毕,“onended”事件就会触发,因为我编写了某种可以运行的脚本。
<video id="videoSource" style="visibility:visible" width="1000" height="500" controls="controls" onended="hideVideo()">
<source src="**Youtube Video Link Goes here**" type="video/mp4" />
</video>
<script type="text/javascript">
function hideVideo() {
document.getElementById("videoSource").style.visibility="hidden";
}
</script>
这里所有的本地视频文件都可以正常工作,唯一的事情是我需要提供一个 YouTube 视频作为它不起作用的来源,所以请任何知道这帮助我的人..