2

在 jquery 选项卡元素中使用 facebook 评论社交插件时,它现在返回 0 宽度的 iframe,从而导致空白页面(选项卡)。通话在选项卡中已经工作了几个月(几年),但现在一个月以来就出现了问题。如果我将呼叫置于选项卡之外,则插件可以正常工作。呼叫是

<ul class="css-tabs">
  <li><a id= "t1" href="#tab1">#ISUSkating</a></li>
  <li><a id= "t2" href="#tab2">Facebook</a></li>
  <li><a id= "t3" href="#tab2">Timetable</a></li>
   </ul>

<!-- tab "panes" -->

<div class="css-panes"> 
  <!-- TAB 1 -->
    <div></div>
  <!-- TAB 2 -->
  <div id="fb_comments" style="height:530px; overflow-y:auto; background-color:white;border-bottom-right-radius:5px; border-bottom-left-radius:5px; border-top-right-radius:5px;">
    <fb:comments href="http://livemanager.eurovision.edgesuite.net/isu/site/index.html" num_posts="10" width="300" colorscheme="light" order_by='reverse_time'></fb:comments>
  </div>

  <!-- TAB 3 -->
  <div id="companion_right" style="height:250px; width:300px;"></div>

</div>

<!-- activate above css tabs with JavaScript --> 
<script>
    $(function() {
    // :first selector is optional if you have only one tabs on the page
    $(".css-tabs:first").tabs(".css-panes:first > div");
    });
    </script> 

4

1 回答 1

4

将此添加到您的 CSS 中。

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]  {width: 100% !important;}
于 2013-10-31T09:18:23.580 回答