2013-11-01 228 views
0

我對jQuery非常陌生,我在我的網站上有一個fancybox。但是,當我打開畫廊中的一個圖像時,fancybox跳轉到頁面的頂部。我的腳本如下所示:FancyBox跳到頁面頂部

<script type="text/javascript"> 
    $(document).ready(function() { 
     $('.fancybox').fancybox({ 
     helpers: { 
         title : { type : 'inside' }, 
        }, //helpers 
     beforeLoad: function() 
        { 
         this.title = $(this.element).attr('caption'); 
        } 
     overlay : { 
         showEarly : false 
        } //overlay 

     }); 
}); 


</script> 
+0

http://stackoverflow.com/questions/13547007/fancybox2-fancy-box-causes-page-to-to-jump-to-the-top – juju

+0

嘗試首先更新到最新的主人,你可以從這裏下載表格https://github.com/fancyapps/fancyBox/archive/master.zip – JFK

+0

我更新了主人,它似乎已經解決了問題!非常感謝! :) – Infrantic

回答

0

由於JFK上面提到,更新到最新的FancyBox Master修復了我的問題。