2014-04-08 2 views
0

jquery-1.11.0.min.js를 사용하면 colorbox에서 비디오를 올바르게로드하지 않습니다. colorbox div가 표시되지만 YouTube 동영상이로드되지 않습니다. OADG Dutt Roth video을 참조하십시오. jquery-1.7.1을 사용하면 비디오가 올바르게로드됩니다. OADG Horse video을 참조하십시오. 누군가 1.11.0과 함께 작동하는 솔루션을 식별 할 수 있습니까?colorbox iframe이 jquery와 호환되지 않습니다. 1.11

<script type="text/javascript" src="../script/jquery-1.11.0.min.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.js"></script> 
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script> 
<script type="text/javascript" src="../script/jquery.colorbox-min.js" charset="utf-8"></script> 
<script type="text/javascript">   
    /*<![CDATA[*/    
    jQuery(document).ready(function(){ 
    jQuery('.youtube').colorbox({iframe: true, width: 853, height: 480, href:function(){ 
    var videoId = new RegExp('[\\?&]v=([^&#]*)').exec(this.href); 
    if (videoId && videoId[1]) { 
     return 'http://youtube.com/embed/'+videoId[1]+'?rel=0&wmode=transparent'; 
    } 
}});   
}); 
/*]]>*/ 
</script> 
<div> 
    <p><a class='youtube' href="http://www.youtube.com/embed/Z_nAZI5dfx0?rel=0" title="Susanne Dutt-Roth Riding D2 March, 2012"><img src="S_DuttRothFeb2012.jpg" title="Susanne Dutt-Roth Riding D2 March, 2012" alt="Susanne Dutt-Roth Riding D2 March, 2012"/></a></p> 
</div> 
+0

문제가 있다고 생각합니다. 내 대답을 참조하십시오. –

답변

1

jQuery colorbox는 jquery 1.3 이상에서만 호환됩니다. 귀하의 코드에서 jquery의 업데이트 버전을 참조해야합니다.

"와 호환 : jQuery를 1.3.2 이상" http://www.jacklmoore.com/colorbox/

당신이 링크 (http://www.ottawadressage.ca/duttroth/)가 하나 개 이상의 jQuery를 파일이 포함되어 있습니다. <head> 섹션에서 언급 된 이전 버전을 제거하십시오.

+0

jquery 1.11.0을 사용하고 있었는데, 1.7-1이 주석 처리되었습니다. 1.11.0 또는 1.9.0 만 사용하면 YouTube 비디오가 웹 페이지 상단에 열립니다. colorbox.js는 사용되지 않는 $ .browser를 나타냅니다. migrate-1.2.1에서 1.11.0을 사용하면 컬러 박스가 열리지 만 비디오는 상자로 다운로드되지 않습니다. 링크를 통해 YouTube 동영상을 가져 오는 증거는 없습니다. 1.7.1에서 비디오가있는 colorbox가 작동하지 않는 곳에서 뭔가 바뀌 었습니다. 이미지 만 colorbox에 의해 참조되는 한, 1.11.0에서 작동합니다. – user1897732