您可以像这样在onend事件中加载下一个剪辑
<script type="text/javascript">var nextVideo = "path/of/next/video.mp4";var videoPlayer = document.getElementById('videoPlayer');videoPlayer.onended = function(){ videoPlayer.src = nextVideo;}</script><video id="videoPlayer" src="path/of/current/video.mp4" autoplay autobuffer controls />


