我正在尝试在aspx页面上嵌入2个单独的YouTube视频,但在第一个iFrame渲染后没有任何内容。我对asp.net相对较新 - 所以如果这是一个简单的问题,我道歉 - 我只是无法弄清问题是什么。
以下是代码:
<p class="indent">
Watch a video showing how to email a report.
</p>
<p class="centerText">
<iframe type="text/html" width="640" height="385" src="http://www.youtube.com/embed/l8QSqhcnhf8" allowfullscreen frameborder="0" />
</p>
<br />
<p class="indent">
Watch a video showing how to create a web page.
</p>
<p class="centerText">
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/35yKdLf5B3Y" allowfullscreen frameborder="0" />
</p>
答案 0 :(得分:1)
更改为 <iframe></iframe>
,而不是 <iframe />
<p class="indent">
Watch a video showing how to email a report.
</p>
<p class="centerText">
<iframe type="text/html" width="640" height="385" src="http://www.youtube.com/embed/l8QSqhcnhf8" allowfullscreen frameborder="0" ></iframe>
</p>
<br />
<p class="indent">
Watch a video showing how to create a web page.
</p>
<p class="centerText">
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/35yKdLf5B3Y" allowfullscreen frameborder="0" ></iframe>
</p>