我最近一直试图进入HTML5以获得快速"项目。 我想创建一个视频播放列表,视频播放结束时会自动播放。还有一些额外的功能,如通过简单的按钮进行视频选择等。
我有一个链接,其中包含一个目录,其中包含我想要播放的视频的所有网址(listLink),但我无法找到访问所包含内容的方法在那个链接。
所以我的问题是,您如何获取外部URL信息并选择该HTML代码中的所有视频网址? 谢谢!
<!DOCTYPE html>
<html lang ="en">
<head>
<meta charset="UTF-8">
<title>SU Video Player</title>
</head>
<Body>
<embed id="videoPlayer"
src="https://dl.dropbox.com/s/bvv608uln671swf/s0e0.mp4?dl=0" loop="false"
type="video/mp4" autostart="false" />
</body>
<script>
// Get the videoPlayer
var videoPlayer = document.getElementById("videoPlayer");
// contains all the videos I'd like to be playable.
// It's a directory, and in the HTML code of the link there are video links for every video.
var listLink = "https://www.dropbox.com/sh/di8i7gob9b3mgle/AACOC5yDuBpttC2ZVYuxLJw5a?dl=0";
document.link
nextVideo = "https://dl.dropbox.com/sh/p23gpogpqwwuilq/AAAAthZF_4HKcaRt3gHIP9Mia/s1e1.mp4?dl=0";
//videoPlayer.src = listLink("Video")[5];
function NextVideo() {
videoPlayer.src = nextVideo;
}
</script>