我正在使用Fancybox作为简单的图库,使用HTML
<div class="item" href="0Showcase/Abstract/img/E75_2056.jpg" data-fancybox-group="button" title="">
有时候我需要根据URL中的#number直接显示图片,我使用以下代码:
if (window.location.hash) {
// alert ('using index : '+parseInt(location.hash.substring(1)));
$.fancybox.open($(".item"), {index: 3}); // hardcoded for testing
};
这在版本2中工作正常,但在版本3中没有,它将始终显示第一张照片。非常感谢您的帮助!