使用 Jquery $(select) 排除链接
我正在使用 ContentFlow 作为图像库,当图像在流中居中时,它会变成 .活动
。我有以下函数可以在缩略图变为 .active
时启用 PrettyPhoto 灯箱,但当链接缩略图(这是一个文件夹)变为活动状态时,我需要排除指向其他图像库的链接。
这是我当前的 PrettyPhoto 代码:
currentLink : '.item.active',
currentFolder : '.folder',
currentImg : '.item.active .content'
function initCBox(){
var img1 = $(select.currentLink).attr('href');
var label = $(select.currentImg).attr('alt');
var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
if (val.nodeType === 3) {
return val.data;
}
}).join('');
$.prettyPhoto.open(img1,label,desc);
}
我试图使用不排除文件夹,这样:
function initCBox(){
var img1 = $(select.currentLink).not('currentFolder').attr('href');
var label = $(select.currentImg).attr('alt');
var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
if (val.nodeType === 3) {
return val.data;
}
}).join('');
$.prettyPhoto.open(img1,label,desc);
}
它不起作用,所以任何帮助将不胜感激。
I am using ContentFlow for an image gallery and when the image centers in the flow it becomes .active
. I have the following function to enable a PrettyPhoto lightbox when a thumbnail image becomes .active
but I need to exclude links to additional image galleries when the the link thumbnail ( which is a folder) becomes active.
This is my current code for PrettyPhoto:
currentLink : '.item.active',
currentFolder : '.folder',
currentImg : '.item.active .content'
function initCBox(){
var img1 = $(select.currentLink).attr('href');
var label = $(select.currentImg).attr('alt');
var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
if (val.nodeType === 3) {
return val.data;
}
}).join('');
$.prettyPhoto.open(img1,label,desc);
}
I am trying to use not to exclude the folders as such:
function initCBox(){
var img1 = $(select.currentLink).not('currentFolder').attr('href');
var label = $(select.currentImg).attr('alt');
var desc = $.map( $('.item.active .caption')[0].childNodes, function(val,i) {
if (val.nodeType === 3) {
return val.data;
}
}).join('');
$.prettyPhoto.open(img1,label,desc);
}
It's not working so any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论