<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<a href="test.html">First Video</a>
<a href="test.html">Second Video</a>
<!-- This is the first video -->
<iframe width="560" height="315"
src="https://www.youtube.com/embed/621IukZrGJo?list=PLLcHY_4gyFEHRwJ8OuXjR3SjBazaEgoTq"
frameborder="0" allowfullscreen>
</iframe>
<!-- This is the second video -->
<iframe width="560" height="315"
src="https://www.youtube.com/embed/H_sYWYq9Aks?list=PLLcHY_4gyFEHRwJ8OuXjR3SjBazaEgoTq"
frameborder="0"
allowfullscreen>
</iframe>
</body>
</html>
&#13;
答案 0 :(得分:2)
您必须使用YouTube开发者API。您可以使用JavaScript
https://developers.google.com/youtube/v3/code_samples/javascript
答案 1 :(得分:1)