在 fancybox 中传递数组变量时出错
在我的网站中,我有一个名为图像的链接,我想要的是当用户单击它时,它将使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageList 是一个数组。您需要这样做(尽管为什么在某个东西的 NAME 属性中包含所有 url?):
假设您正在演示页面更新上尝试“manual2”版本
:要使用第二种格式,您可以使用 rel 和 title:
ImageList is an array. You need to do this (although why have all the urls in the NAME attribute of something?):
Assuming you are trying the "manual2" version on the demo page
UPDATE: to use the second format you could use rel and title: