将HTML文本输入iframe

时间:2013-05-27 23:44:05

标签: html iframe video text

是否可以在iframe中添加“子文字”?例如,我有以下代码......

<iframe class="musicsamples" width="80%" height="315" src="http://www.youtube.com/embed/apkRBANIKxc" frameborder="0" allowfullscreen></iframe>

    <iframe class="musicsamples" width="80%" height="315" src="http://www.youtube.com/embed/h7ArUgxtlJs" frameborder="0" allowfullscreen></iframe>

我希望能够添加一些文字,详细解释视频等,但每当我在iframe内部或外部使用简单的

标记时,它将if视为iframe不存在,文本始终显示在页面顶部而不是iframe下方。也许我需要以iframe以外的其他方式嵌入此视频,以便能够同时使用文本?

1 个答案:

答案 0 :(得分:0)

我不确定什么不适合你,也许你的CSS搞砸了?

我能够使用视频的iframe并为它们添加一些描述。这是一个示例,它也在jsFiddle

<div>
    <iframe class="musicsamples" width="80%" height="315" src="http://www.youtube.com/embed/apkRBANIKxc" frameborder="0" allowfullscreen></iframe>
    <p>Pharoahe Monch Simon Says (Avicii Remix)</p>
</div>

<div>
    <iframe class="musicsamples" width="80%" height="315" src="http://www.youtube.com/embed/h7ArUgxtlJs" frameborder="0" allowfullscreen></iframe>
    <p>deadmau5 feat. Rob Swire - Ghosts N Stuff</p>
</div>