在桌面版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>