2012-10-12 59 views
3

在桌面版Chrome中查看時,Youtube視頻不會顯示在模式窗口中。模式窗口彈出,但YouTube視頻沒有。youtube視頻不會在桌面版中顯示Chrome

https://animalhealth.pfizer.com/sites/pahweb/US/EN/Products/Pages/ClarifideStories.aspx

它工作在IE和Firefox上的Windows7,工作在Android版Chrome ICS和iOS6的iPad上。

這是SharePoint站點上

,但如果我打開保存到我的桌面版本它在鉻工作正常。

我使用jQuery的fancybox

它是怎樣叫

<a class="iframe" href="http://www.youtube.com/watch? v=nGAyZSFDYh0&feature=player_embedded#at=41" style=" float: left;"> 


javascript 
    <script type="text/javascript"> 
    $(".iframe").click(function() { 
    $.fancybox({ 
      'padding'  : 0, 
      'autoScale'  : false, 
      'transitionIn' : 'none', 
      'transitionOut' : 'none', 
      'title'   : this.title, 
      'width'  : 680, 
      'height'  : 495, 
      'href'   : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'), 
      'type'   : 'swf', 
      'swf'   : { 
       'wmode'  : 'transparent', 
       'allowfullscreen' : 'true' 
      } 
     }); 

    return false; 
}); 
</script> 

回答

1

我敢打賭,它與您的安全HTTPS頁面調用非安全HTTP頁面來完成。 試着改變你的YouTube視頻https://www.youtube.com/. . . . .

0

在其他瀏覽器中播放視頻的開頭,所以它可能是啓動順序:#at=41與該嵌入選項一起造成問題。如果你不打算在41秒開始,也可以把它拿出來,或者使用youtube.com/embed/videoid選項。