1

我的网页中有一个滚动的 iframe 视频部分。问题是页面在滚动中的每个 iframe 加载时都会刷新。我已经使用了这个网站的滚动条http://www.smoothdivscroll.com/index.html#toc。加载 iframe 时如何避免页面刷新?

html:

<div id="logoParade">
  <div class="scrollWrapper">
    <div class="scrollableArea">
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
      <div class="product-box" id="test">
        <iframe width="700" height="500" src="http://www.youtube.com/embed/QTKM-54zWm4" frameborder="0" allowfullscreen></iframe>
      </div>
    </div>
  </div>
</div>
4

1 回答 1

0

每次 iframe 加载都没有刷新,至少我不知道。我在您的 HTML 中看到的唯一问题是与刷新无关的类似 ID 属性(“测试”),只是您应该修复的问题。

我已经用插件测试了你的代码,它工作正常。

于 2012-12-31T14:02:23.133 回答