0

我有一个主(父)页面 index.html。我在我的母版页中放了一个 iframe,iframe 宽度=535 高度=1330。我将菜单放在母版页中,所有页面都显示在 iframe 中。我有一个由视频灯箱创建的视频库页面。如果我点击视频,它可以正常播放,但在 iframe 中。如果我将其设为全屏,它也会留在侧面 iframe 中。

所以我想要 iframe 中的视频,显示在母版页中。

我的母版页代码

我的视频库页面:

<link rel="stylesheet" href="index_videolb/videolightbox.css" type="text/css" />

<link rel="stylesheet" type="text/css" href="index_videolb/overlay-minimal.css"/>

<script src="index_videolb/jquery.js" type="text/javascript"></script>

<script src="index_videolb/swfobject.js" type="text/javascript"></script>


    <!-- End VideoLightBox.com HEAD section -->

 

<div class="videogallery">

通过 VideoLightBox.com v2.4 将视频流式传输到网站

</div>

<script src="index_videolb/jquery.tools.min.js" type="text/javascript"></script>

<script src="index_videolb/videolightbox.js" type="text/javascript"></script>

<!-- End VideoLightBox.com BODY section --></td>
  </tr>

所以请帮我给我任何脚本或任何要更改的代码,这可以解决我的问题。

谢谢

MAHS

4

1 回答 1

0

尝试使用以下 iframe 代码:

  <iframe src="page.html" width="535" height="1130">
  <p>Your browser does not support iframes.</p>
  </iframe>

对于 exp:您可以将其嵌入到 index.html 中的 page.html 中

于 2013-10-01T05:59:44.430 回答