在 fancybox 中传递数组变量时出错

发布于 2024-10-28 19:09:14 字数 1330 浏览 0 评论 0原文

在我的网站中,我有一个名为图像的链接,我想要的是当用户单击它时,它将使用 fancybox 显示图像库。我使用 name 属性来放置所有图像文件名,然后使用 javascript 来解析它。

我的问题是当使用多个图像时 fancybox 未加载。但如果我对文件名进行硬编码,它就可以工作。我不知道为什么。

这是我的代码。

$(".imageGallery").click(function() {
        var pURL = $(this).attr("name");
        var pID  = "#" + $(this).attr("id");
        var imageList="";
        var arrUrl = new Array();
        var i=0;            

        if (pURL.indexOf(',') != -1)
        {
            arrUrl = pURL.split(',');
            imageList = arrUrl;
        }else {imageList = pURL;}
        alert(imageList);
        $.fancybox([imageList], {
            'autoScale'             : true,
            'autoDimensions'        : true,
            'speedIn'               : 800,
            'speedOut'              : 800,
            'changeSpeed'           : 500,
            'padding'               : 0,
            'centerOnScroll'        : false,
            'type'                  : 'image',
            'transitionIn'          : 'fade',
            'transitionOut'         : 'fade',  
            'showCloseButton'       : true,
            'titlePosition'         : 'outside',
            'hideOnContentClick'    : true,
            'overlayColor'             : '#1b2642',
            'showNavArrows'         : true
        });
    });

In my site I have this link called images and what I want is when the user clicks it, it will display the image gallery using fancybox. I use the name attribute to put all the image filename and then using javascript to parse it.

My problem is when using multiple images the fancybox is not loading. but then if I hardcode the filename it is working. I'm not sure why.

Here's my code.

$(".imageGallery").click(function() {
        var pURL = $(this).attr("name");
        var pID  = "#" + $(this).attr("id");
        var imageList="";
        var arrUrl = new Array();
        var i=0;            

        if (pURL.indexOf(',') != -1)
        {
            arrUrl = pURL.split(',');
            imageList = arrUrl;
        }else {imageList = pURL;}
        alert(imageList);
        $.fancybox([imageList], {
            'autoScale'             : true,
            'autoDimensions'        : true,
            'speedIn'               : 800,
            'speedOut'              : 800,
            'changeSpeed'           : 500,
            'padding'               : 0,
            'centerOnScroll'        : false,
            'type'                  : 'image',
            'transitionIn'          : 'fade',
            'transitionOut'         : 'fade',  
            'showCloseButton'       : true,
            'titlePosition'         : 'outside',
            'hideOnContentClick'    : true,
            'overlayColor'             : '#1b2642',
            'showNavArrows'         : true
        });
    });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£噩梦荏苒 2024-11-04 19:09:14

ImageList 是一个数组。您需要这样做(尽管为什么在某个东西的 NAME 属性中包含所有 url?):

if (pURL.indexOf(',') != -1) {
   imageList = pURL.split(',');
}
else {
  imageList = [pURL];
}
alert(imageList);
$.fancybox(imageList, { // no brackets

假设您正在演示页面更新上尝试“manual2”版本

$("#manual2").click(function() {
    $.fancybox([
        'http://farm5.static.flickr.com/4044/4286199901_33844563eb.jpg',
        'http://farm3.static.flickr.com/2687/4220681515_cc4f42d6b9.jpg',
        {
            'href'  : 'http://farm5.static.flickr.com/4005/4213562882_851e92f326.jpg',
            'title' : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit'
        }
    ], {
        'padding'           : 0,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'image',
        'changeFade'        : 0
    });
});

:要使用第二种格式,您可以使用 rel 和 title:

$(".imageGallery").click(function() {
  var pURL = $(this).attr("rel");
  var pTitle = $(this).attr("title");
  var arrUrl = (pURL.indexOf(',') != -1)?pURL.split(','):[pURL];
  var arrTitle = (pTitle.indexOf(',') != -1)?pTitle.split(','):[pTitle];
  var imageList = [];
  for (var i=0;i<arrUrl.length;i++) {
    imageList[i] = { "href":arrUrl[i], "title": arrTitle[i] }
  }
  $.fancybox(imageList, {

ImageList is an array. You need to do this (although why have all the urls in the NAME attribute of something?):

if (pURL.indexOf(',') != -1) {
   imageList = pURL.split(',');
}
else {
  imageList = [pURL];
}
alert(imageList);
$.fancybox(imageList, { // no brackets

Assuming you are trying the "manual2" version on the demo page

$("#manual2").click(function() {
    $.fancybox([
        'http://farm5.static.flickr.com/4044/4286199901_33844563eb.jpg',
        'http://farm3.static.flickr.com/2687/4220681515_cc4f42d6b9.jpg',
        {
            'href'  : 'http://farm5.static.flickr.com/4005/4213562882_851e92f326.jpg',
            'title' : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit'
        }
    ], {
        'padding'           : 0,
        'transitionIn'      : 'none',
        'transitionOut'     : 'none',
        'type'              : 'image',
        'changeFade'        : 0
    });
});

UPDATE: to use the second format you could use rel and title:

$(".imageGallery").click(function() {
  var pURL = $(this).attr("rel");
  var pTitle = $(this).attr("title");
  var arrUrl = (pURL.indexOf(',') != -1)?pURL.split(','):[pURL];
  var arrTitle = (pTitle.indexOf(',') != -1)?pTitle.split(','):[pTitle];
  var imageList = [];
  for (var i=0;i<arrUrl.length;i++) {
    imageList[i] = { "href":arrUrl[i], "title": arrTitle[i] }
  }
  $.fancybox(imageList, {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文