youtube iframe 后的内容未显示
content at after youtube iframe not shown
我想在 html 中显示 YouTube 视频。为此,我正在使用 iframe。但是iframe之后的内容没有显示。
这是我的 html 代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<body>
<p>Content of the document......</p>
<h3>1 Microsoft And Google Collaborate On Angular 2 Framework, TypeScript Language</h3><div><p><span class="embed-youtube"><iframe class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/videoseries?list=PLOETEcp3DkCoNnlhE-7fovYvqwVPrRiY7&hl=en_US" frameborder="0" allowfullscreen="true"/></span></p></div>
<p>END END</p>
</body>
</html>
在此代码中 "END END" 在 youtube iframe 之后未显示
您需要正确关闭 iframe
标签。目前你关闭它
内联,但这不是正确的方法。做:
<iframe ..></iframe>
我想在 html 中显示 YouTube 视频。为此,我正在使用 iframe。但是iframe之后的内容没有显示。
这是我的 html 代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<body>
<p>Content of the document......</p>
<h3>1 Microsoft And Google Collaborate On Angular 2 Framework, TypeScript Language</h3><div><p><span class="embed-youtube"><iframe class="youtube-player" type="text/html" width="640" height="390" src="http://www.youtube.com/embed/videoseries?list=PLOETEcp3DkCoNnlhE-7fovYvqwVPrRiY7&hl=en_US" frameborder="0" allowfullscreen="true"/></span></p></div>
<p>END END</p>
</body>
</html>
在此代码中 "END END" 在 youtube iframe 之后未显示
您需要正确关闭 iframe
标签。目前你关闭它
内联,但这不是正确的方法。做:
<iframe ..></iframe>