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>
http://stackoverflow.com/questions/13547007/fancybox2-fancy-box-causes-page-to-to-jump-to-the-top – juju
嘗試首先更新到最新的主人,你可以從這裏下載表格https://github.com/fancyapps/fancyBox/archive/master.zip – JFK
我更新了主人,它似乎已經解決了問題!非常感謝! :) – Infrantic